import { type HTMLAttributes } from "react"; export interface SearchProps extends Omit, "onChange"> { placeholder?: string; shortcut?: string; onSearch?: (value: string) => void; /** Controlled value */ value?: string; /** Change handler for controlled mode */ onChange?: (value: string) => void; /** Accessible label for the search input */ "aria-label"?: string; } export declare const Search: import("react").ForwardRefExoticComponent>;