UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

11 lines (10 loc) 437 B
/// <reference types="react" /> /// <reference types="react" /> import { FieldElement, FieldElementProps } from '../field'; import { RadioGroupProps } from '../radio'; export type RadioFieldProps = Omit<FieldElementProps, 'onChange'> & RadioGroupProps; export default class RadioField extends FieldElement<RadioFieldProps> { static displayName: string; renderPreview(value: any): JSX.Element; renderControl(): JSX.Element; }