import { Cluster } from './cluster.js'; export type PlacementStrategy = 'local' | 'round-robin'; export declare class PlacementEngine { private readonly cluster; private roundRobinCounters; constructor(cluster: Cluster); selectNode(strategy: PlacementStrategy, role?: string): string; } //# sourceMappingURL=placement.d.ts.map