import { BpInput } from '@blueprintui/components/input'; /** * ```typescript * import '@blueprintui/components/include/month.js'; * ``` * * ```html * * * * message text * * ``` * * @summary The month input component is used to allow the user to select a month from a dropdown menu. It is used as a replacement for traditional text input when selecting a month. * @element bp-month * @since 1.0.0 * @slot prefix - slot for prefix text or icons * @slot suffix - slot for suffix text or icons * @event {InputEvent} input - occurs when the value changes * @event {InputEvent} change - occurs when the value changes */ export declare class BpMonth extends BpInput { /** Specifies the input type as month for date selection */ accessor type: string; static get styles(): CSSStyleSheet[]; protected get suffixTemplate(): import("lit").TemplateResult<1>; }