export interface SingleTableSelection { kind: 'single-table-selection'; properties: string[]; } export declare function createSingleTableSelection(properties: string[]): SingleTableSelection; export declare function parseSingleTableSelection(constructor: Function): SingleTableSelection;