import React, { ReactNode } from 'react'; import { FormInstance } from 'antd'; import { ChildComponentPropsType } from '../type'; declare type ChildComponentPropsContextType = ChildComponentPropsType & { form: FormInstance; }; interface ChildComponentPropsProviderProps { childComponentProps?: ChildComponentPropsType; children: ReactNode; } export declare const ChildComponentPropsProvider: React.FC; export declare const useChildComponentPropsContext: () => ChildComponentPropsContextType; export {};