export type FilterInputProps = {
    value: string;
    onChange: (newValue: string) => void;
};
export declare function FilterInput(props: FilterInputProps): JSX.Element;
