import { EventEmitter } from '../../stencil-public-runtime'; export declare class DnnSearchbox { /** * Sets the field placeholder text. */ placeholder?: string; /** * How many milliseconds to wait before firing the queryChanged event. */ debounceTime: number; /** Sets the query */ query: string; /** * Fires up each time the search query changes. * The data passed is the new query. */ queryChanged: EventEmitter; handleQueryChanged(): void; focused: any; private inputField; private debounceTimer; render(): any; }