import * as $dara from '@darabonba/typescript'; import { VersionWeight } from "./VersionWeight"; export declare class RoutingConfiguration extends $dara.Model { /** * @remarks * Traffic weight configuration for different versions */ versionWeights?: VersionWeight[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }