import React, { ReactNode } from 'react';
import { BoxProps } from '@shopify/restyle';
import { Theme } from '../theme';
type EmptyProps = BoxProps<Theme> & {
    /** 暂无数据的文字dom */
    emptyText?: ReactNode;
    /** 自定义img */
    customImg?: ReactNode;
};
declare const Empty: React.FC<EmptyProps>;
export default Empty;
//# sourceMappingURL=index.d.ts.map