import { AxiosInstance } from 'axios';
export type Mode = 'hibernate' | 'init' | 'active' | 'complete';
export declare function useProgressBarMode(axiosInstance: AxiosInstance): {
    mode: Mode;
};
