import { ServiceCollection, ServiceCollectionRequest } from '../models'; /** * This function is used to initialize services with a provided url * @param services an object containing the url of the services to init * @param authenticationCallback (optional) the authentification callback. Called when the token were not able to be refreshed. * @param useLocalStorage (default: true) if true store tokens into local storage (only for browsers) * @returns an instance of each services with a provided url */ export declare const init: (services: ServiceCollectionRequest, authenticationCallback?: ((err: Error, practiceUuid?: string | undefined) => void) | undefined, useLocalStorage?: boolean) => ServiceCollection;