import * as $dara from '@darabonba/typescript'; export declare class DescribeResourcesDeleteProtectionResponseBody extends $dara.Model { /** * @remarks * The name of the queried resource. * * This parameter is required. * * @example * arms-prom */ name?: string; /** * @remarks * The namespace of the queried resource. * * @example * default */ namespace?: string; /** * @remarks * The type of the queried resource. * * @example * namespaces */ resource?: string; /** * @remarks * Indicates whether deletion protection is enabled. * - true: enabled. * - false: disabled. * * @example * false */ protection?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeResourcesDeleteProtectionResponse extends $dara.Model { headers?: { [key: string]: string; }; statusCode?: number; body?: DescribeResourcesDeleteProtectionResponseBody[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }