import { default as React, CSSProperties, FC } from 'react'; import { FormInstance } from 'antd'; export interface OnChainFormProps { readOnly?: boolean; name?: string; height?: number; className?: string; style?: CSSProperties; children?: React.ReactNode; } export interface OnChainFormForwardRefProps extends FormInstance { } declare const OnChainForm: FC; export default OnChainForm;