import { InjectionToken } from '@angular/core'; /** The settings are used to configure the Strovi UI module */ export interface StroviSettings { /** The full URL of the API server to send API requests to */ apiUrl: string; } /** The injection token used to lookup the StroviSettings */ export declare const STROVI_SETTINGS_TOKEN: InjectionToken;