import { default as React } from 'react'; export interface OnChainMarkdownProps { value?: string; readOnly: boolean; onChange?: (value: string) => void; height?: number; OSS_URL?: string; token?: string; toPostFileRecord?: ({ file, response, type }: { file: any; response: any; type: any; }) => void; } declare const OnChainMarkdown: React.FC; export default OnChainMarkdown;