import { Search } from '@gpa-gemstone/react-interactive';
interface IProps<T> {
    SetFilter: (evt: Search.IFilter<T>[]) => void;
    Filter: Search.IFilter<T>[];
    FieldName: string;
    ApproxMatches?: boolean;
}
/**
 * Component for rendering a text input filter.
 * @param props - Props for configuring and managing the text filter.
 * @returns JSX for rendering a text input filter with wildcard options.
 */
export declare function TextFilter<T>(props: IProps<T>): JSX.Element;
export {};
