import type { AgComponentSelector } from '../interfaces/agComponent'; import type { AgCoreBeanCollection } from '../interfaces/agCoreBeanCollection'; import type { BaseEvents } from '../interfaces/baseEvents'; import type { BaseProperties } from '../interfaces/baseProperties'; import type { IPropertiesService } from '../interfaces/iProperties'; import { AgCheckbox } from './agCheckbox'; import type { AgCheckboxParams } from './agFieldParams'; import type { AgWidgetSelectorType } from './agWidgetSelectorType'; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export interface AgRadioButtonParams extends AgCheckboxParams { } /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare class AgRadioButton, TProperties extends BaseProperties, TGlobalEvents extends BaseEvents, TCommon, TPropertiesService extends IPropertiesService, TComponentSelectorType extends string> extends AgCheckbox> { constructor(config?: AgRadioButtonParams); protected isSelected(): boolean; toggle(): void; protected addInputListeners(): void; /** * This ensures that if another radio button in the same named group is selected, we deselect this radio button. * By default the browser does this for you, but we are managing classes ourselves in order to ensure input * elements are styled correctly in IE11, and the DOM 'changed' event is only fired when a button is selected, * not deselected, so we need to use our own event. */ private onChange; } /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare const AgRadioButtonSelector: AgComponentSelector;