UNPKG

react-admin-kit

Version:

A react based UI components for admin system

12 lines (11 loc) 540 B
/// <reference types="react" /> import type { ProFormProps } from '@ant-design/pro-form'; import type { BaseInnerRef } from '../SchemaForm/types'; type ProFormType = ProFormProps & { children?: React.ReactNode | React.ReactNode[]; innerRef?: BaseInnerRef; }; export declare const InnerRefContext: import("react").Context<BaseInnerRef | undefined>; export declare const ReadonlyContext: import("react").Context<boolean>; declare const ProForm: (props: ProFormType) => import("react/jsx-runtime").JSX.Element; export default ProForm;