export declare function getSyncBufFilePath(accountId: string): string; export type SyncBufData = { get_updates_buf: string; }; export declare function loadGetUpdatesBuf(filePath: string): string | undefined; export declare function saveGetUpdatesBuf(filePath: string, getUpdatesBuf: string): void;