import React, { CSSProperties } from 'react'; import { type ClassValue } from '../../utils/cx'; import { type SizeType } from '../config-provider'; interface MilkdownProps { className?: ClassValue; size?: SizeType; style?: CSSProperties; value?: string; quickStatic?: boolean; onChange?: (text: string) => void; minEditorHeight?: number; disabled?: boolean; onBlur?: (text: any) => void; isRowinfo?: boolean; } declare const Milkdown: React.FC; export default Milkdown;