import type { CSSResultArray, TemplateResult } from 'lit'; import { FormElement } from '../base/form-element'; declare const PharosSwitch_base: typeof FormElement; /** * Pharos switch component. * * @tag pharos-switch * * @fires change - Fires when the value has changed */ export declare class PharosSwitch extends PharosSwitch_base { /** * Indicates if checkbox is checked. * @attr checked */ checked: boolean; /** * Indicates the value for the input. * @attr value */ value: string; private _switch; private _defaultChecked; static get styles(): CSSResultArray; protected firstUpdated(): void; private _handleClick; onChange(): void; _handleFormdata(event: CustomEvent): void; _handleFormReset(): void; protected render(): TemplateResult; } export {}; //# sourceMappingURL=pharos-switch.d.ts.map