import * as $dara from '@darabonba/typescript'; export declare class RegistryAuthConfig extends $dara.Model { /** * @remarks * 镜像仓库的登录密码 * * @example * abc*** */ password?: string; /** * @remarks * 镜像仓库的登录用户名 * * @example * admin */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }