import * as $dara from '@darabonba/typescript'; export declare class DeregisterServiceInput extends $dara.Model { /** * @remarks * 要注销的服务名称(UUID格式) * * This parameter is required. * * @example * 12345678-1234-1234-1234-123456789abc */ serviceName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }