import { CSSResult } from 'lit'; import { Control } from '../forms'; /** * @element nve-switch * @description A switch is a control that enables users to switch between two mutually exclusive options (on or off, checked or unchecked) through a single click or tap. * @since 0.3.0 * @entrypoint \@nvidia-elements/core/switch * @cssprop --cursor * @cssprop --border-radius * @cssprop --border-width * @cssprop --border * @cssprop --background * @cssprop --width * @cssprop --height * @cssprop --anchor-width * @cssprop --anchor-height * @cssprop --anchor-border-radius * @cssprop --anchor-background * @cssprop --padding * @aria https://www.w3.org/WAI/ARIA/apg/patterns/switch/ */ export declare class Switch extends Control { protected nveControl: string; static styles: CSSResult[]; static readonly metadata: { tag: string; version: string; children: string[]; }; }