type CompositionService = AnyObject; export type StateV2 = { local: { name: string; config: { [varName: string]: string; }; apps: { [id: string]: { name: string; commit?: string; releaseId?: number; services: { [id: string]: CompositionService & { imageId: number; serviceName: string; image: string; running: boolean; environment: { [varName: string]: string; }; labels: { [labelName: string]: string; }; contract?: AnyObject; }; }; volumes: AnyObject; networks: AnyObject; }; }; }; dependent: { apps: Record; devices: Record; }; }; export declare const stateV2: import("express").RequestHandler, Record>; export {};