/** * This file was auto-generated by Fern from our API Definition. */ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import { Assignments } from "../resources/assignments/client/Client"; import { Batches } from "../resources/batches/client/Client"; import { ProjectGroups } from "../resources/projectGroups/client/Client"; export declare namespace Studio { interface Options { environment?: environments.ScaleEnvironment | string; token?: core.Supplier; } } export declare class Studio { private readonly options; constructor(options: Studio.Options); private _assignments; get assignments(): Assignments; private _batches; get batches(): Batches; private _projectGroups; get projectGroups(): ProjectGroups; }