/** * Types for query response */ import { PlainObject } from './Base'; export declare type DataRecordValue = number | string | boolean | Date | null; export interface DataRecord { [key: string]: DataRecordValue; } export interface DataRecordFilters { [key: string]: DataRecordValue[]; } export declare type QueryData = PlainObject; //# sourceMappingURL=QueryResponse.d.ts.map