import * as $dara from '@darabonba/typescript'; export declare class ListPoliciesResponseBodyPoliciesPolicyTagsTag extends $dara.Model { tagKey?: string; tagValue?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListPoliciesResponseBodyPoliciesPolicyTags extends $dara.Model { tag?: ListPoliciesResponseBodyPoliciesPolicyTagsTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListPoliciesResponseBodyPoliciesPolicy extends $dara.Model { attachmentCount?: number; createDate?: string; defaultVersion?: string; description?: string; policyName?: string; policyType?: string; tags?: ListPoliciesResponseBodyPoliciesPolicyTags; updateDate?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListPoliciesResponseBodyPolicies extends $dara.Model { policy?: ListPoliciesResponseBodyPoliciesPolicy[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListPoliciesResponseBody extends $dara.Model { /** * @remarks * Indicates whether the response is truncated. * * @example * true */ isTruncated?: boolean; /** * @remarks * The marker. This parameter is returned only if the value of `IsTruncated` is `true`. If the parameter is returned, you can call this operation again and set `Marker` to obtain the truncated part.`` * * @example * EXAMPLE */ marker?: string; policies?: ListPoliciesResponseBodyPolicies; /** * @remarks * The request ID. * * @example * 7B8A4E7D-6CFF-471D-84DF-195A7A241ECB */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }