import * as z from "zod/v4"; import * as models from "../index.js"; export type ConfigureProjectModelsGlobals = { /** * 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 ConfigureProjectModelsRequest = { /** * Project ID or name. */ idOrName: string; configureModelsRequest?: models.ConfigureModelsRequest | undefined; }; /** @internal */ export type ConfigureProjectModelsRequest$Outbound = { idOrName: string; ConfigureModelsRequest?: models.ConfigureModelsRequest$Outbound | undefined; }; /** @internal */ export declare const ConfigureProjectModelsRequest$outboundSchema: z.ZodType; export declare function configureProjectModelsRequestToJSON(configureProjectModelsRequest: ConfigureProjectModelsRequest): string; //# sourceMappingURL=configureprojectmodels.d.ts.map