import type { Action2, NiceAxiosConfig, Func } from '../types'; export declare function getMultipartConfig(config: NiceAxiosConfig): NiceAxiosConfig; export declare const isHttpUrl: (url?: string) => boolean; export declare function checkStatus(status: number, msg: string, showMsg?: Action2): void; export declare const maybeFnCall: (fn?: T | Func | undefined) => T | undefined;