import { Control } from '../forms'; import { PropertyValues, nothing } from 'lit'; /** * @element nve-range * @description A range slider is a control that enables users to choose a value from a continuous range of values. * @since 0.3.0 * @entrypoint \@nvidia-elements/core/range * @cssprop --background * @cssprop --control-height * @cssprop --cursor * @cssprop --track-width * @cssprop --track-height * @cssprop --track-border-radius * @cssprop --track-background * @cssprop --thumb-width * @cssprop --thumb-height * @cssprop --thumb-background * @cssprop --thumb-border * @aria https://www.w3.org/WAI/ARIA/apg/patterns/slider/ */ export declare class Range extends Control { #private; static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; }; /** Determines the orientation of the range slider. */ orientation: 'vertical' | 'horizontal'; connectedCallback(): void; firstUpdated(props: PropertyValues): void; updated(props: PropertyValues): void; protected get suffixContent(): typeof nothing | import('lit').TemplateResult<1>; }