import * as $dara from '@darabonba/typescript'; import { PolarFsMountConfig } from "./PolarFsMountConfig"; export declare class PolarFsConfig extends $dara.Model { /** * @remarks * The ID of the group. * * @example * 1000 */ groupId?: number; /** * @remarks * The mount points for PFS. */ mountPoints?: PolarFsMountConfig[]; /** * @remarks * The ID of the user. * * @example * 1000 */ userId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }