export interface RSQLQuery { field: string; operator: string; value: string | number | boolean; } export declare function parseRSQL(query: string): RSQLQuery[]; export declare function buildRSQL(queries: RSQLQuery[]): string;