/** * Resource Manager * Mock implementation for testing purposes */ export declare class ResourceManager { private config; private initialized; private allocations; constructor(config: any); initialize(): Promise; shutdown(): Promise; getAgentResources(agentId: string): Promise; generateAllocationReport(): Promise; getPreemptionReport(): Promise; adjustAgentResources(request: any): Promise; } //# sourceMappingURL=ResourceManager.d.ts.map