import { Feature } from 'oak-frontend-base/es/types/Feature'; import { EntityDict } from '../oak-app-domain'; import { Cache } from 'oak-frontend-base/es/features/cache'; import { LocalStorage } from 'oak-frontend-base/es/features/localStorage'; export declare class WechatPublicTag extends Feature { private cache; private storage; constructor(cache: Cache, storage: LocalStorage); createTag(params: { applicationId: string; name: string; }): Promise; getTags(params: { applicationId: string; }): Promise; editTag(params: { applicationId: string; id: number; name: string; }): Promise; deleteTag(params: { applicationId: string; id: string; wechatId: number; }): Promise; syncTag(params: { applicationId: string; id: string; }): Promise; oneKeySync(params: { applicationId: string; }): Promise; }