@alifd/meet-react
Version:
Fusion Mobile React UI System Component
11 lines (10 loc) • 455 B
TypeScript
/// <reference types="react" />
/// <reference types="react" />
import { CheckboxGroupProps } from '../checkbox';
import { FieldElement, FieldElementProps } from '../field';
export type CheckboxFieldProps = Omit<FieldElementProps, 'onChange'> & CheckboxGroupProps;
export default class CheckboxField extends FieldElement<CheckboxFieldProps> {
static displayName: string;
renderPreview(value: any): JSX.Element;
renderControl(): JSX.Element;
}