import { RadioButtonPassThrough, RadioButtonClickEvent } from 'primeng/types/radiobutton'; export * from 'primeng/types/radiobutton'; import * as i0 from '@angular/core'; import { EventEmitter, ElementRef, Injector } from '@angular/core'; import { NgControl } from '@angular/forms'; import { BaseEditableHolder } from 'primeng/baseeditableholder'; import * as i1 from 'primeng/bind'; import { Bind } from 'primeng/bind'; import { Nullable } from 'primeng/ts-helpers'; import { BaseStyle } from 'primeng/base'; import * as i2 from 'primeng/api'; /** * * RadioButton is an extension to standard radio button element with theming. * * [Live Demo](https://www.primeng.org/radiobutton/) * * @module radiobuttonstyle * */ declare enum RadioButtonClasses { /** * Class name of the root element */ root = "p-radiobutton", /** * Class name of the box element */ box = "p-radiobutton-box", /** * Class name of the input element */ input = "p-radiobutton-input", /** * Class name of the icon element */ icon = "p-radiobutton-icon" } declare class RadioButtonStyle extends BaseStyle { name: string; style: string; classes: { root: ({ instance }: { instance: any; }) => (string | { 'p-radiobutton-checked': any; 'p-disabled': any; 'p-invalid': any; 'p-variant-filled': boolean; 'p-radiobutton-sm p-inputfield-sm': boolean; 'p-radiobutton-lg p-inputfield-lg': boolean; })[]; box: string; input: string; icon: string; }; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } interface RadioButtonStyle extends BaseStyle { } declare const RADIO_VALUE_ACCESSOR: any; declare class RadioControlRegistry { private accessors; add(control: NgControl, accessor: RadioButton): void; remove(accessor: RadioButton): void; select(accessor: RadioButton): void; private isSameGroup; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } /** * RadioButton is an extension to standard radio button element with theming. * @group Components */ declare class RadioButton extends BaseEditableHolder { $pcRadioButton: RadioButton | undefined; bindDirectiveInstance: Bind; onAfterViewChecked(): void; /** * Value of the radiobutton. * @group Props */ value: any; /** * Index of the element in tabbing order. * @group Props */ tabindex: number | undefined; /** * Identifier of the focus input to match a label defined for the component. * @group Props */ inputId: string | undefined; /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. * @group Props */ ariaLabelledBy: string | undefined; /** * Used to define a string that labels the input element. * @group Props */ ariaLabel: string | undefined; /** * Style class of the component. * @deprecated since v20.0.0, use `class` instead. * @group Props */ styleClass: string | undefined; /** * When present, it specifies that the component should automatically get focus on load. * @group Props */ autofocus: boolean | undefined; /** * Allows to select a boolean value. * @group Props */ binary: boolean | undefined; /** * Specifies the input variant of the component. * @defaultValue undefined * @group Props */ variant: i0.InputSignal<"filled" | "outlined" | undefined>; /** * Specifies the size of the component. * @defaultValue undefined * @group Props */ size: i0.InputSignal<"small" | "large" | undefined>; /** * Callback to invoke on radio button click. * @param {RadioButtonClickEvent} event - Custom click event. * @group Emits */ onClick: EventEmitter; /** * Callback to invoke when the receives focus. * @param {Event} event - Browser event. * @group Emits */ onFocus: EventEmitter; /** * Callback to invoke when the loses focus. * @param {Event} event - Browser event. * @group Emits */ onBlur: EventEmitter; inputViewChild: ElementRef; $variant: i0.Signal<"filled" | "outlined" | null>; checked: Nullable; focused: Nullable; control: Nullable; _componentStyle: RadioButtonStyle; injector: Injector; registry: RadioControlRegistry; onInit(): void; onChange(event: any): void; select(event: Event): void; onInputFocus(event: Event): void; onInputBlur(event: Event): void; /** * Applies focus to input field. * @group Method */ focus(): void; /** * @override * * @see {@link BaseEditableHolder.writeControlValue} * Writes the value to the control. */ writeControlValue(value: any, setModelValue: (value: any) => void): void; onDestroy(): void; get dataP(): string | undefined; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; static ngAcceptInputType_tabindex: unknown; static ngAcceptInputType_autofocus: unknown; static ngAcceptInputType_binary: unknown; } declare class RadioButtonModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { RADIO_VALUE_ACCESSOR, RadioButton, RadioButtonClasses, RadioButtonModule, RadioButtonStyle, RadioControlRegistry };