import type { SearchFilter } from './search-filter.js';
/**
 * Representation of the 'TextSearchRequest' schema.
 */
export type TextSearchRequest = {
    /**
     * Query string
     * Max Length: 2000.
     * Min Length: 1.
     */
    query: string;
    filters: SearchFilter[];
} & Record<string, any>;
//# sourceMappingURL=text-search-request.d.ts.map