/** * axios controller */ export declare const axiosController: AbortController; /** * axios config */ export declare const axiosConfig: { /** Server API */ server: import("axios").AxiosInstance; /** NEXT ClientServer API */ client: import("axios").AxiosInstance; }; /** * server axios 各メソッド * | next apiから叩く */ export declare const serverAxios: { /** * axios get * @todo 認証不要の場合未検証 * @param {string} url */ get: (url: string, token?: string) => Promise; /** * axios post */ post: (url: string, data: T_1, token?: string) => Promise; /** * axios put */ put: (url: string, data: T_2, token?: string) => Promise; /** * axios delete */ delete: (url: string, token?: string) => Promise; }; /** * next axios 各メソッド */ export declare const clientAxios: { /** * axios get * @param {string} url */ get: (url: string) => Promise; /** * axios post */ post: (url: string, data: T_1) => Promise; /** * axios put */ put: (url: string, data: T_2) => Promise; /** * axios delete */ delete: (url: string) => Promise; }; //# sourceMappingURL=axios.d.ts.map