import { BootstrapElement } from '@bootstrap-wc/core'; /** * `` — Bootstrap range slider. Renders the native * `` into LIGHT DOM so form participation is * automatic. See `bs-input` for the rationale. */ export declare class BsRange extends BootstrapElement { static formAssociated: boolean; value: string; min: number; max: number; step: number; name: string; disabled: boolean; private _input; focus(): void; get nativeInput(): HTMLInputElement | null; protected createRenderRoot(): HTMLElement; connectedCallback(): void; private _onInput; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'bs-range': BsRange; } } //# sourceMappingURL=range.d.ts.map