UNPKG

react-application-core

Version:

A react-based application core for the business applications.

21 lines (20 loc) 617 B
/// <reference types="react" /> import { IRadioProps } from '../../../definition'; import { BaseCheckbox } from './base-checkbox.component'; /** * @component-impl * @stable [21.12.2020] */ export declare class Radio extends BaseCheckbox<IRadioProps> { static readonly defaultProps: IRadioProps & Partial<import("../../../definition").IGenericComponentProps<any>>; /** * @stable [21.12.2020] * @protected */ protected get inputAttachmentElement(): JSX.Element; /** * @stable [21.12.2020] * @protected */ protected getFieldClassName(): string; }