export declare const Q_PARAMS: { readonly sort: "sort"; readonly page: "page"; readonly pageSize: "pageSize"; readonly q: "q"; }; export declare const TABLE_STYLES: { readonly height: "500px"; }; export declare const DATA_TYPES: readonly [{ readonly ansiSqlType: "Real"; readonly semanticType: "FLOAT"; readonly jsType: "number"; }, { readonly ansiSqlType: "Integer/Int/Int4"; readonly semanticType: "INTEGER"; readonly jsType: "number"; }, { readonly ansiSqlType: "Numeric/decimal"; readonly semanticType: "DECIMAL"; readonly jsType: "number"; }, { readonly ansiSqlType: "Text"; readonly semanticType: "STRING"; readonly jsType: "string"; }, { readonly ansiSqlType: "Date"; readonly semanticType: "DATE"; readonly jsType: "Date"; }, { readonly ansiSqlType: "Time"; readonly semanticType: "TIME"; readonly jsType: "Date"; }, { readonly ansiSqlType: "Timestamp without timezone"; readonly semanticType: "DATETIME"; readonly jsType: "Date"; }, { readonly ansiSqlType: "Timestamp with timezone"; readonly semanticType: "TIMESTAMP"; readonly jsType: "Date"; }, { readonly ansiSqlType: "Boolean"; readonly semanticType: "BOOLEAN"; readonly jsType: "boolean"; }]; export type DataType = (typeof DATA_TYPES)[number]; export type KeyOfDataType = keyof DataType; export type ColumnAnsiSqlType = DataType['ansiSqlType'];