import { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import type { FormProps } from 'antd/es/form'; import type { CustomComponentObject, CustomTableRenderObject, SchemaItem } from './types'; export interface SchemaFormProps { json: SchemaItem; value?: any; onOk?: Function; onCancel?: Function; okText?: string | number; cancelText?: string | number; footer?: Function; customComponent?: CustomComponentObject; customTableRender?: CustomTableRenderObject; languagePack?: object; formOptions?: Omit; } type SchemaFormComponent = ForwardRefExoticComponent & RefAttributes>; declare const SchemaForm: SchemaFormComponent; export default SchemaForm;