import * as $dara from '@darabonba/typescript'; export declare class DescribeClusterAddonInstanceResponseBody extends $dara.Model { /** * @remarks * The component configuration. * * @example * {"NetworkPolicy":"true"} */ config?: string; /** * @remarks * The component name. * * @example * terway-eniip */ name?: string; /** * @remarks * The component status. Valid values: * * - initial: installing * - active: installed * - unhealthy: abnormal * - upgrading: upgrading * - updating: updating * - deleting: uninstalling * - deleted: deleted. * * @example * active */ state?: string; /** * @remarks * The component version. * * @example * v1.4.3 */ version?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }