import * as $dara from '@darabonba/typescript'; import { NASMountConfig } from "./NasmountConfig"; export declare class NASConfig extends $dara.Model { /** * @remarks * The group ID for file system access. * * @example * 100 */ groupId?: number; /** * @remarks * A list of mount point configurations. */ mountPoints?: NASMountConfig[]; /** * @remarks * The user ID for file system access. * * @example * 100 */ userId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }