import React from 'react'; import { FormInstance } from 'antd'; import { BaseFormProps } from '../BaseForm'; export interface BizStepsFormContextProps { formArrayRef: React.RefObject; next: () => void; submit: () => void; onFormFinish: (name: string, value: any) => void; loading: boolean; setLoading: (loading: boolean) => void; formProps?: Omit; forceUpdate: () => void; } declare const BizStepsFormContext: React.Context; export default BizStepsFormContext;