import { BpInput } from '@blueprintui/components/input'; /** * ```typescript * import '@blueprintui/components/include/time.js'; * ``` * * ```html * * * * message text * * ``` * * @summary The Search component is used for searching for specific content within an application. * @element bp-search * @since 1.0.0 * @slot prefix - slot for prefix text or icons * @slot suffix - slot for suffic text or icons * @event {InputEvent} input - occurs when the value changes * @event {InputEvent} change - occurs when the value changes */ export declare class BpSearch extends BpInput { /** Specifies the input type as search for optimized search behavior */ accessor type: string; static get styles(): CSSStyleSheet[]; protected get prefixTemplate(): import("lit").TemplateResult<1>; }