export class SearchComponent extends HTMLElement {
    /**
     * @readonly
     * @type {string}
     */
    static readonly NAME: string;
    static get observedAttributes(): string[];
    shadow: ShadowRoot;
    /**
     * @param {string} value
     */
    set placeholder(value: string);
    attributeChangedCallback(name: any, oldValue: any, newValue: any): void;
    connectedCallback(): void;
    #private;
}
