UNPKG

@dccs/react-formik-mui

Version:
16 lines (15 loc) 567 B
/// <reference types="react" /> import { FilePickerProps } from "@dccs/react-filepicker-mui"; import { FormHelperTextProps } from "@material-ui/core/FormHelperText"; interface IBaseProps { name: string; helperText?: string; error?: boolean; useField?: boolean; formHelperTextProps?: FormHelperTextProps; fieldProps?: {}; validate?: any; } export declare type FormikFormikFilePicker = IBaseProps & Omit<FilePickerProps, "value" | "onChange">; export declare function FormikFilePicker(props: FormikFormikFilePicker): JSX.Element; export {};