export interface Field { name: string; title: string; } interface QueryInputProps { fields: Field[]; symbols: string[]; field?: string; value?: string; symbol?: string; onChange: (field: string, symbol: string, value: string) => JSX.Element | void; } export declare const QueryInput: (props: QueryInputProps) => JSX.Element; export {};