rfa
Version:
**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.
14 lines (13 loc) • 538 B
TypeScript
/// <reference types="react" />
import { SelectProps as MUIProps } from "@material-ui/core";
import { FormControlType, FormFieldError } from "../../types/common-form-components-types";
import { OptionType } from "../../model";
export declare type SelectProps = FormControlType & FormFieldError & {
label: string;
multiple?: boolean;
helperText?: boolean;
options: (OptionType & {
MuiProps?: Exclude<MUIProps, OptionType>;
})[];
};
export declare const Select: (props: SelectProps) => JSX.Element;