import { LitElement } from 'lit'; import { SliderFormControlMixin } from '@blueprintui/components/forms'; declare const BpRange_base: typeof LitElement & SliderFormControlMixin; /** * ```typescript * import '@blueprintui/components/include/range.js'; * ``` * * ```html * * * * message text * * ``` * * @summary The range input component is used to allow the user to select a value within a specified range of values. * @element bp-range * @since 1.0.0 * @slot prefix - slot for prefix text or icons * @slot suffix - slot for suffix text or icons * @slot - slot for range input * @cssprop --accent-color * @cssprop --height * @event {InputEvent} input - occurs when the value changes * @event {InputEvent} change - occurs when the value changes */ export declare class BpRange extends BpRange_base { #private; static get styles(): CSSStyleSheet[]; connectedCallback(): void; render(): import("lit").TemplateResult<1>; } export {};