export declare enum SearchResultType { singleSelect = "singleSelect", multiSelect = "multiSelect", datePicker = "datePicker" } export declare enum ColumnTypes { date = "date", string = "string" } export declare const inOperator: { label: string; value: string; type: string; }; export declare const notInOperator: { label: string; value: string; type: string; }; export declare const orderByOperator: { label: string; value: string; }; export declare const byOperator: { label: string; value: string; }; export declare const orderOperator: { label: string; value: string; }; export declare const conditionalOperators: { label: string; value: string; type: string; }[]; export declare const sortingOperators: { label: string; value: string; }[]; export declare const logicalOperators: { label: string; value: string; }[]; export declare const notOperator: { label: string; value: string; }; export declare const datePickerDefaultLeftMargin = 76;