import { Control, type IControlOptions } from "./Control"; export interface ISearchOptions extends IControlOptions { searchField?: string; closeButton?: string; suggestions?: string; brand?: string; onKeyEnter?: (value: string) => void; onSearchSubmit?: (value: string) => void; } export declare class Search extends Control { brand: HTMLElement; suggestions: HTMLElement; closeButton: HTMLElement; searchField: HTMLInputElement; constructor(element: string, options: ISearchOptions); bind(): void; private keypress; private toggleOverlay; }