import { DefaultProps } from '../theme'; declare type Filter = Record; export interface FilterInputProps extends DefaultProps { suggestions?: any[]; placeholder?: string; filters?: Filter; onChange?: (params?: any) => void; onClear?: () => void; onInputChange?: (params?: any) => void; isMultiKeyword?: boolean; initialKeyword?: string; simpleMode?: boolean; disabled?: boolean; } export declare const FilterInput: import("../utils/types").ComponentWithAs; export {}; //# sourceMappingURL=FilterInput.d.ts.map