/** A structure given service and its nexthops as a destination for failover ips */
export interface Destination {
    /** Nexthops available on this service */
    nexthop?: string[];
    /** Service destination */
    service: string;
}
//# sourceMappingURL=Destination.d.ts.map