export interface IResData { code: number; data?: DateType; msg: string; } interface IApiRoute { path: string; prefix: string; } interface IApiRoutes { BVCSP_V1: IApiRoute; BVNRU_V1: IApiRoute; } export declare const apiUrls: { setApiPrefix: (targetApiRoute: keyof IApiRoutes, prefix?: string) => string; getApiURL: (targetApiRoute: keyof IApiRoutes) => string; bvscpV1: () => string; bvnruV1: () => string; }; export declare const setBvcspV1ApiPrefix: (prefix?: string) => void; export declare const setBvnruV1ApiPrefix: (prefix?: string) => void; declare const apiVar: { apiUrls: { setApiPrefix: (targetApiRoute: keyof IApiRoutes, prefix?: string) => string; getApiURL: (targetApiRoute: keyof IApiRoutes) => string; bvscpV1: () => string; bvnruV1: () => string; }; }; export default apiVar;