export interface MultiTableSelection { kind: 'multi-table-selection'; nameToTable: { [key: string]: string; }; properties: [string, [string, string]][]; } export declare function createMultiTableSelection(nameToTable: { [key: string]: string; }, properties: [string, [string, string]][]): MultiTableSelection; export declare function parseMultipleTableSelection(pairs: [string, Function][]): MultiTableSelection;