import React, { FC } from 'react'; import type { EmptyProps as TntdEmptyProps } from 'tntd/lib/empty'; export interface EmptyProps extends TntdEmptyProps { imgHeight?: number; extra?: React.ReactNode; } export declare const Empty: FC; export default Empty;