import React, { FC, ReactNode } from 'react'; export interface EmptyProps { className?: string; style?: React.CSSProperties; prefix?: string; text?: ReactNode; icon?: ReactNode; onClickBack?: () => void; back?: boolean; } declare const Empty: FC; export { Empty };