UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

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