import * as $dara from '@darabonba/typescript'; export declare class UpdatePolicyDescriptionRequest extends $dara.Model { /** * @remarks * The description of the policy. * * The description must be 1 to 1,024 characters in length. * * @example * This is a test policy. */ newDescription?: string; /** * @remarks * The name of the policy. * * @example * TestPolicy */ policyName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }