export interface AddressableService {
    port: number;
    command?: string[];
    env?: Record<string, {
        value: string;
    }>;
}
export interface AddressableOutput {
    services?: Record<string, AddressableService>;
}
export declare function clusterHostPattern(serviceName: string): RegExp;
export declare function rewriteClusterHostsToLocal(devOutput: AddressableOutput): void;
