/** * API CALLS */ export declare const fetchAllDocIds: () => Promise; export declare const fetchDocInitStateByDocId: (docId: any) => Promise; /** * Api call which should be implemented for codox utilization during sync */ export declare const fetchStateWithTimestamp: (docId: any) => Promise<{ data: any; timestamp: any; }>; export declare const updateServerState: (docId: any, state: any) => Promise;