UNPKG

@fakel/rest-admin

Version:

An application that makes it easier to work with your API

12 lines (11 loc) 375 B
import { FormikProps, FieldInputProps, FieldMetaProps } from 'formik'; declare type UseAntComponentT = { Component: any; ComponentChildren?: (value: any) => any; form: FormikProps<any>; field: FieldInputProps<any>; meta?: FieldMetaProps<any>; props?: any; }; export declare const useAntComponent: (params: UseAntComponentT) => JSX.Element; export {};