import type { ServicesType } from './types'; declare const _default: { init: (services?: ServicesType) => void; getAPIURL: (action: keyof ServicesType) => string; getReAuthURL: () => string | null | undefined; getServerURL: () => string | undefined; getRouteURL: (action: keyof ServicesType) => string | null | undefined; fetchData: (requestBody: any) => Promise; setGoogleMapsAPIKey: (key: string) => void; getGoogleMapsAPIKey: () => string; }; export default _default;