import * as z from "zod/v4"; import * as models from "../index.js"; export type ConfigureProjectRemoteSandboxGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type ConfigureProjectRemoteSandboxRequest = { /** * Project ID or name. */ idOrName: string; configureRemoteSandboxRequest?: models.ConfigureRemoteSandboxRequest | undefined; }; /** @internal */ export type ConfigureProjectRemoteSandboxRequest$Outbound = { idOrName: string; ConfigureRemoteSandboxRequest?: models.ConfigureRemoteSandboxRequest$Outbound | undefined; }; /** @internal */ export declare const ConfigureProjectRemoteSandboxRequest$outboundSchema: z.ZodType; export declare function configureProjectRemoteSandboxRequestToJSON(configureProjectRemoteSandboxRequest: ConfigureProjectRemoteSandboxRequest): string; //# sourceMappingURL=configureprojectremotesandbox.d.ts.map