import { RootState } from '../../../engine/state'; import { Column, Table } from '../../../internal-types'; /** * Map]> */ export type DiffMap = Map; type DiffTuple = [string, Map]; type NameToTableMap = Map; }>; export declare const Diff: { readonly insert: 1; readonly delete: 2; }; export declare function diffState(prevState: RootState, state: RootState): [DiffMap, DiffMap]; export declare function getNameToTableMap({ doc: { tableIds }, collections, }: RootState): NameToTableMap; export declare function getDiffStyle(diff: number, diffMap: DiffMap): HTMLStyleElement; export {};