import { ContractColumnConfig, ContractResponse, ContractTableConfig, InstanceColumnConfig, ObjectAny } from './types'; import { DataType } from './constants'; export declare const ANSI_SQL_TO_UI_EDITING: Record>; export declare const columnsConfigMapper: (columnsConfigBackend: ContractColumnConfig[], tableConfigBackend: ContractTableConfig | undefined) => InstanceColumnConfig[]; export declare const responseMapper: (resp: ContractResponse) => { rows: ObjectAny[]; columnsConfig: InstanceColumnConfig[]; tableConfigBackend: ContractTableConfig | undefined; topSummaryRows: ObjectAny[] | undefined; bottomSummaryRows: ObjectAny[] | undefined; };