import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type DeploymentProjectInfo = { /** * Unique identifier for the project. */ id: string; /** * Project name. */ name: string; }; /** @internal */ export declare const DeploymentProjectInfo$inboundSchema: z.ZodType; export declare function deploymentProjectInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deploymentprojectinfo.d.ts.map