import React from 'react'; import { TdEmptyProps } from './type'; import { StyledProps } from '../common'; export interface EmptyProps extends TdEmptyProps, StyledProps { } declare const Empty: React.FC; export default Empty;