import { InjectionToken } from '@angular/core'; export interface LibConfig { ENV: string; CONSUMER_URL: string; SECURITY_URL: string; REF_URL: string; AFTERSALES_URL: string; CONSUMER_STRIPE_URL: string; WARRANTY_URL: string; MANDATE_URL: string; CONSUMER_REF_URL: string; MAP_ID: string; support: { phone: string; email: string; }; WARRANTY_PORTAL: string; cookieSettings: { secure: boolean; sameSite: 'Strict' | 'Lax' | 'None'; path: string; }; bosch_services_uri: string; } export declare const LIB_CONFIG: InjectionToken;