import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiCheckboxViewState } from './logic.js'; import type { CheckboxSize, NuiCheckboxEventMap } from './types.js'; export type { NuiCheckboxEventMap }; export declare class NuiCheckbox extends LitElement implements NuiCheckboxViewState { checked: boolean; disabled: boolean; indeterminate: boolean; invalid: boolean; size: CheckboxSize | ''; name: string; value: string; readonly: boolean; required: boolean; inputId: string; ariaLabel: string; ariaLabelledby: string; unstyled: boolean; nuiType: NuiType; checkboxClass: string; protected createRenderRoot(): DocumentFragment | HTMLElement; protected firstUpdated(): void; protected updated(changed: PropertyValues): void; private syncInputIndeterminate; private handleChange; render(): import("lit-html").TemplateResult; } export interface NuiCheckbox { addEventListener( type: K, listener: (this: NuiCheckbox, ev: NuiCheckboxEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; addEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: K, listener: (this: NuiCheckbox, ev: NuiCheckboxEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; } declare global { interface HTMLElementTagNameMap { 'nui-checkbox': NuiCheckbox; } } //# sourceMappingURL=nui-checkbox.d.ts.map