import type { JSX } from 'react';
export type FilterInputProps = {
    value: string;
    onChange: (newValue: string) => void;
    dataTestId?: string;
};
export declare function FilterInput(props: FilterInputProps): JSX.Element;
