import type { MouseEvent } from "react"; import React from "react"; import type { InputProps } from "../Input/Input"; export type SearchInputProps = Omit & { /** Clears the input. */ onClear?: (e: MouseEvent) => void; slotProps?: { clearButton?: { ariaLabel?: string; }; }; }; export declare const SearchInput: ({ value, placeholder, autoComplete, readOnly, label, labelHint, hideLabel, hint, errorMessages, "aria-describedby": ariaDescribedBy, "data-e2e-test-id": dataE2eTestId, onClear, slotProps, ...rest }: SearchInputProps) => React.ReactElement;