import { IKnowTimer } from "./types";
declare const getMyGroupTimers: (recvObjectId?: string, recvIsGroup?: boolean) => Promise<any>;
declare const addMyGroupTimer: (timer: IKnowTimer) => Promise<any>;
declare const delMyGroupTimer: (timer: IKnowTimer) => Promise<any>;
export { getMyGroupTimers, addMyGroupTimer, delMyGroupTimer };
