import { BpInput } from '@blueprintui/components/input'; /** * ```typescript * import '@blueprintui/components/include/date.js'; * ``` * * ```html * * * * message text * * ``` * * @summary The date input component is used to allow users to select a date from the native browser datepicker input type. * @element bp-date * @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 BpDate extends BpInput { /** Defines the input type as date, enabling native browser date picker functionality */ accessor type: string; get valueAsDate(): Date; set valueAsDate(value: Date); static styles: CSSStyleSheet[]; protected get suffixTemplate(): import("lit").TemplateResult<1>; }