import { EventEmitter } from '@angular/core'; import { CheckboxProps } from '@kite_aerolab/shared/components'; export declare class CheckboxComponent { focusable: boolean; /** * ID del checkbox. */ id: string; /** * Required del checkbox. */ required: boolean; /** * Checked del checkbox. */ isChecked: boolean; /** * Value del checkbox. */ value: string; /** * Name del checkbox. */ name: string; /** * Aria Label del checkbox. */ ariaLabel: string; /** * Css */ css: CheckboxProps['css']; /** * Estado deshabilitado del checkbox. */ isDisabled: boolean; /** * Label del radio button */ label: string; /** * Label del radio button */ isInvalid: boolean; /** * */ isRequired: boolean; /** * */ isIndeterminate: boolean; /** * Texto de la acción del radio button */ actionText: string; onClick: EventEmitter; onChange: EventEmitter; ariaLabelledby: string; ariaDescribedby: string; get checkboxContainer(): string[]; get checkboxLabel(): string[]; get checkboxAction(): string[]; handleFocus(event: any): void; ngAfterViewInit(): void; } //# sourceMappingURL=checkbox.component.d.ts.map