/** * server axios */ export declare const ISServerAxios: { get: (url: string, token?: string | undefined) => Promise; post: (url: string, data: T_1, token?: string | undefined) => Promise; put: (url: string, data: T_2, token?: string | undefined) => Promise; delete: (url: string, token?: string | undefined) => Promise; }; /** * Next api axios */ export declare const ISClientAxios: { get: (url: string) => Promise; post: (url: string, data: T_1) => Promise; put: (url: string, data: T_2) => Promise; delete: (url: string) => Promise; }; /** * IS axios config */ export declare const ISAxiosConfig: { server: import("axios").AxiosInstance; client: import("axios").AxiosInstance; }; /** * axios Controller */ export declare const ISAxiosController: AbortController; /** * IS swr fetcher */ export declare const ISFetcher: (url: string) => Promise; //# sourceMappingURL=index.d.ts.map