export interface Data { [path: string]: any; } export declare const flatten: (table: any) => any; export declare function unflatten(table: any): any; export declare const getDeletedPaths: (records: MutationRecord[]) => { ehrElementsRemoved: string[]; repeatablesRemoved: string[]; };