import { InjectionToken } from '@angular/core'; import { UcUiConfig } from './uc-ui-config.interface'; /** * Injection token for UC-UI library configuration. * * Use `provideUcUi()` to provide this token in your application config * rather than providing it directly. * * @example * ```typescript * // Direct injection in a service * export class MyService { * private config = inject(UC_UI_CONFIG); * * get apiUrl(): string { * return this.config.apiBaseUrl; * } * } * ``` */ export declare const UC_UI_CONFIG: InjectionToken;