import { BootOptions } from './ocppClient.js'; import { buildClientsFromConfig } from './bootstrap/clientFactory.js'; declare const app: import("express-serve-static-core").Express; type ClientEntry = ReturnType[number]; type TestState = { containerId: string; bootOpts: BootOptions; csmsUrl: string; connectors: number; defaultEvseId: string; apiLoginPasswordProtected?: boolean; apiLoginPassword?: string; }; declare function setTestState(state: TestState): void; declare function setTestClients(entries: ClientEntry[]): void; declare function initializeCharger(): Promise; declare function startServer(): Promise; export { app, initializeCharger, startServer, setTestState, setTestClients, buildClientsFromConfig };