import React from "react"; import type { Ref } from "react"; import "./index.less"; interface Props { refreshing: boolean; ref: Ref; message?: string; } export declare const Refresh: ({ message, refreshing, ref }: Props) => React.JSX.Element; export {};