import React from 'react'; export interface IDEmptyLineProps { prefixCls?: string; className?: string; style?: React.CSSProperties; height?: number; } declare const DEmptyLine: ({ height, prefixCls, className, style }: IDEmptyLineProps) => JSX.Element; export default DEmptyLine;