import React from 'react'; import type { EmptyProps as AntEmptyProps } from 'antd-mobile/es/components/empty'; declare const EMPTY_LIST_MAP: { noData: { image: JSX.Element; description: string; }; }; export interface EmptyProps extends AntEmptyProps { type?: keyof typeof EMPTY_LIST_MAP; } declare const Empty: React.NamedExoticComponent; export default Empty;