import { Library, ResponseLinks } from './global'; export declare type CreateSearch = { successful: { [key: string]: Search; }; success: { [key: string]: string; }; unchanged: { [key: string]: string; }; failed: { [key: string]: string; }; }; export declare type Search = { key: string; version: number; library: Library; links: ResponseLinks; data: SearchData; }; declare type SearchData = { key: string; version: number; name: string; conditions: Condition[]; }; declare type Condition = { condition: string; operator: string; value: string; }; export {};