declare namespace useRefresh {
    type Methods = {
        catch<T = any>(key: string): T | undefined;
        release(key: string, message?: any): void;
    };
}
declare const useRefresh: useRefresh.Methods;
export { useRefresh, useRefresh as default };
