import React from 'react'; import './index.less'; type EmptyProps = { value?: string; height?: string; }; declare const Empty: ({ value, height }: EmptyProps) => React.JSX.Element; export default Empty;