import * as $dara from '@darabonba/typescript'; export declare class UnInstallClusterAddonsRequestAddons extends $dara.Model { /** * @remarks * Specifies whether to clean up associated cloud resources when uninstalling the component. Valid values: * - true: Clean up. * - false: Retain. * * @example * true */ cleanupCloudResources?: boolean; /** * @remarks * The name of the component to uninstall. You can call the [ListClusterAddonInstances](https://help.aliyun.com/document_detail/2667940.html) operation to query the components installed in a cluster. * * @example * ack-node-problem-detector */ name?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class UnInstallClusterAddonsRequest extends $dara.Model { /** * @remarks * The list of components. */ addons?: UnInstallClusterAddonsRequestAddons[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }