import { ControlValueAccessor, FormGroup } from '@angular/forms'; import * as i0 from "@angular/core"; /** Possible checkbox color variants */ export type CheckboxVariantProps = 'primary' | 'secondary' | 'tertiary' | 'accent' | 'success' | 'warning' | 'info' | 'error' | null | undefined; /** Possible checkbox size variants */ export type CheckboxSizeProps = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | null | undefined; /** Configuration object for checkbox styling */ export type CheckboxProps = { variant?: CheckboxVariantProps; size?: CheckboxSizeProps; }; /** * A customizable checkbox component with various styling options * * @remarks * Implements ControlValueAccessor for seamless integration with Angular forms. * Supports both standalone usage and form integration with reactive/template-driven forms. * * @example * ```html * * * ``` * * @example * ```html * * * ``` */ export declare class CheckboxComponent implements ControlValueAccessor { /** * Checkbox color variant * @defaultValue 'primary' */ variant: import("@angular/core").InputSignal; /** * Checkbox size variant * @defaultValue 'md' */ size: import("@angular/core").InputSignal; /** * Label text displayed next to the checkbox */ label: import("@angular/core").InputSignal; /** * HTML name attribute for the checkbox */ name: import("@angular/core").InputSignal; /** * Two-way bindable checkbox state */ value: import("@angular/core").ModelSignal; /** * Parent form group for reactive forms */ parentForm: import("@angular/core").InputSignal | null>; /** * Form control name for reactive forms */ formControlName: import("@angular/core").InputSignal; /** * Event emitted when checkbox state changes */ valueUpdated: import("@angular/core").OutputEmitterRef; /** * Stop event propagation for activation events * @defaultValue false */ stopPropagation: import("@angular/core").InputSignal; /** * Event emitted on click */ clicked: import("@angular/core").OutputEmitterRef; /** * Event emitted on Enter keydown */ keyDownEnter: import("@angular/core").OutputEmitterRef; /** * Event emitted on Space keydown */ keyDownSpace: import("@angular/core").OutputEmitterRef; /** * Event emitted on activation (click or keyboard) */ triggered: import("@angular/core").OutputEmitterRef; private onControlChange; private onControlTouch; /** * Whether the checkbox is disabled * @defaultValue false */ disabled: import("@angular/core").ModelSignal; /** * @internal * Computed class string for the checkbox */ componentClass: import("@angular/core").Signal; writeValue(obj: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; setDisabledState(isDisabled: boolean): void; /** * @internal * Handles checkbox state changes */ handleChange(): void; /** * @internal * Handles blur event */ handleBlur(): void; /** * @internal * Handles click activation */ handleClick(event: MouseEvent): void; /** * @internal * Handles Enter keydown activation */ handleKeyDownEnter(event: Event): void; /** * @internal * Handles Space keydown activation */ handleKeyDownSpace(event: Event): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }