import type { FormInstance } from 'antd'; import type { Key } from 'react'; import type { FormItemNeedsProps } from './types'; export interface SuperFormContextProps = any> extends FormItemNeedsProps { form?: FormInstance; layout?: 'horizontal' | 'vertical' | 'inline'; remoteErrors: Record; itemCount?: number; initialValues?: Record; } export declare const SuperFormContext: import("react").Context>;