import { SafeKeyValueString } from '../../complexType/SafeKeyValueString';
/** Original service that can be migrated */
export interface ServiceToMigrate {
    /** Description of the offer of the service */
    description: string;
    /** Additional information on the service */
    metadata: SafeKeyValueString[];
    /** Route */
    route?: string;
    /** ID of the migratable service */
    serviceId: number;
    /** Name of the migratable service */
    serviceName: string;
}
//# sourceMappingURL=ServiceToMigrate.d.ts.map