import { TestableLitElement } from '../../utils/components/testable-lit-element/testable-lit-element.ts'; export declare class NjcSwitch extends TestableLitElement { private _randomId; /** @description id - id for the rendered switch element @property {string} */ id: string; getElementId(): string; /** @property disabled - Disables the switch @type {boolean} **/ disabled: boolean; /** @property value - Value of the switch @type {boolean} **/ value: boolean; /** @property label - Text to render as the switch's visible label @type {string} **/ label: string; /** @property skeleton - Displays the switch in a loading/skeleton state @type {boolean} **/ skeleton: boolean; }