import { InjectionToken } from '@angular/core'; export type LessifyModuleConfig = { spaceId: string; environment: string; apiKey: string; beta?: boolean; logLevel?: 'trace' | 'debug' | 'info' | 'warn' | 'error'; }; export declare const LESSIFY_CONFIG: InjectionToken<{}>;