import { AxiosRequestConfig } from "axios";
export declare const AxiosRequest: {
    get<T>(url: string, token: string, config?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<T, any>>;
    post<T>(url: string, token: string): Promise<import("axios").AxiosResponse<T, any>>;
    put<T>(url: string, token: string): Promise<import("axios").AxiosResponse<T, any>>;
    delete<T>(url: string, token: string): Promise<import("axios").AxiosResponse<T, any>>;
};
