type FieldType = 'test_plan_related_project'; type OperateType = 'include' | 'exclude'; export interface SearchQueryType { conditions: { field: FieldType; operate: OperateType; value: Set | string[]; }[]; allow?: 'fullscreen'; } export declare const stringifySearchQuery: (url: string, query: SearchQueryType) => string; export {}; //# sourceMappingURL=query-string.d.ts.map