import { type BrandProfile } from '../brandProfiles.js'; import { buildClientsFromConfig } from './clientFactory.js'; import type { BootOptions } from '../ocppClient.js'; export type RuntimeInitialization = { containerId: string; bootOpts: BootOptions; csmsUrl: string; connectors: number; defaultEvseId: string; brandName: string | undefined; brandProfile: BrandProfile | null; apiLoginPasswordProtected: boolean; apiLoginPassword: string | undefined; entries: ReturnType; }; export declare function initializeRuntime(): Promise;