import type { FilterSchema } from '../types'; export interface SelectOptions { fields?: string[]; exclude?: string[]; dialect?: string; } export interface SelectResult { sql: string; fields: string[]; } /** * Build SELECT clause from field list */ export declare function buildSelect(schema: FilterSchema, options?: SelectOptions): SelectResult; //# sourceMappingURL=select.d.ts.map