import WebAwesomeElement from '../../internal/webawesome-element.js'; /** * SAMPLE COMPONENT * * @summary A simple slider component that displays the current value. * @documentation https://webawesome.com/docs/components/sample-component * @status experimental * @since 3.0 * * @tag wa-sample-component * * @csspart base - The component's root container. * * @prop {number} value - The current value of the slider. * @prop {number} min - The minimum value selectable. * @prop {number} max - The maximum value selectable. * * @example * ```html * * ``` */ export default class WaSampleComponent extends WebAwesomeElement { static css: string; value: number; min: number; max: number; private handleInput; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'wa-sample-component': WaSampleComponent; } }