import { type InputProps } from '../input/input'; export type SuggestionInputProps = InputProps; declare global { namespace React.JSX { interface IntrinsicAttributes { popovertarget?: string; } } namespace React { interface HTMLAttributes { popovertarget?: string; } } } /** * Component that provides an input field for the Suggestion list. * * Place as a descendant of `Suggestion` * * @example * * * * */ export declare const SuggestionInput: import("react").ForwardRefExoticComponent, "prefix" | "type">, "type" | "disabled" | "readOnly" | "size" | "role" | "data-indeterminate"> & { type?: "checkbox" | "color" | "date" | "datetime-local" | "email" | "file" | "hidden" | "month" | "number" | "password" | "radio" | "search" | "tel" | "text" | "time" | "url" | "week"; size?: number; disabled?: boolean; readOnly?: boolean; role?: import("react").AriaRole | undefined; 'data-indeterminate'?: boolean; } & import("react").RefAttributes>; //# sourceMappingURL=suggestion-input.d.ts.map