import { EntityDict } from "../oak-app-domain"; import { BRC } from "../types/RuntimeCxt"; export declare function createTag(params: { applicationId: string; name: string; }, context: BRC): Promise; export declare function getTags(params: { applicationId: string; }, context: BRC): Promise; export declare function editTag(params: { applicationId: string; id: number; name: string; }, context: BRC): Promise; export declare function deleteTag(params: { applicationId: string; id: string; wechatId: number; }, context: BRC): Promise; export declare function syncTag(params: { applicationId: string; id: string; }, context: BRC): Promise; export declare function oneKeySync(params: { applicationId: string; }, context: BRC): Promise;