export type RawType = string | number | boolean; export type RawData = Record[]; export type QueryFilter = Record; export interface GetQueryBuilderOptions { offset: number; limit: number; groupBy: string; orderBy: string; order: 'desc' | 'asc'; }