import type { ComponentPropsWithRef } from 'react'; import { type ComponentPropsWithoutRef } from 'react'; import type { FilterListOptionDef } from './FilterList.types'; import { Input } from './Input'; declare const FilterTextInput: ({ className, definition, value, onValueChange, inputProps, ...props }: { value: string | null | undefined; onValueChange: ((value: string) => void) | undefined; className?: string; definition: Omit, "type">; inputProps?: ComponentPropsWithRef; } & ComponentPropsWithoutRef<"div">) => import("react/jsx-runtime").JSX.Element; export { FilterTextInput };