import { AfterViewInit, QueryList } from '@angular/core'; import { CheckboxProps } from '@kite_aerolab/shared/components'; import { CheckboxComponent } from './checkbox.component'; export declare class CheckboxGroupComponent implements AfterViewInit { /** * ID del checkbox. */ id: string; /** * Required del checkbox. */ required: boolean; /** * Css */ css: CheckboxProps['css']; /** * El grupo es invalido */ isInvalid: boolean; /** * Texto de ayuda */ helper: string; /** * Texto de error */ error: string; /** * Título del grupo */ title: string; /** * */ isDisabled: boolean; /** * */ isRequired: boolean; items: QueryList; get inputContainerStyles(): string[]; ngAfterViewInit(): void; } //# sourceMappingURL=checkbox-group.component.d.ts.map