import * as i0 from '@angular/core'; import { OnChanges, EventEmitter, SimpleChanges } from '@angular/core'; import { FormControl } from '@angular/forms'; import * as i1 from '@angular/common'; interface Task { name: string; code?: string; completed: boolean; subtasks?: Task[]; } declare class CheckboxGroupComponent implements OnChanges { options: any[]; defaultOptions: string[]; disabled: boolean; control: FormControl | any; direction: string | null; style: string; changeCheck: EventEmitter; readonly task: i0.WritableSignal; constructor(); ngOnChanges(changes: SimpleChanges): void; update(completed: boolean, index?: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class KifCheckboxGroupModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { CheckboxGroupComponent, KifCheckboxGroupModule }; export type { Task };