/// <reference types="react" />
declare type Props = {
    /**
     * 提示文字
     * @default 数据加载中
     */
    tip?: string;
};
declare const Loading: {
    (props: Props): JSX.Element;
    defaultProps: {
        tip: string;
    };
};
export default Loading;
