import { AfterViewInit, QueryList } from '@angular/core'; import { RadioGroupProps } from '@kite_aerolab/shared/components'; import { RadioComponent } from './radio.component'; export declare class RadioGroupComponent implements AfterViewInit { /** * ID del checkbox. */ id: string; /** * Required del checkbox. */ required: boolean; /** * Value del checkbox. */ value: string; /** * Css */ css: RadioGroupProps['css']; /** * 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[]; handleOnChange(item: { value: string; }): void; ngAfterViewInit(): void; } //# sourceMappingURL=radio-group.component.d.ts.map