import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { WorkspaceFile, WorkspaceFile$Outbound } from "./workspacefile.js"; export type WorkspaceManifest = { sessionId: string; files?: Array | undefined; paths?: Array | undefined; }; /** @internal */ export declare const WorkspaceManifest$inboundSchema: z.ZodType; /** @internal */ export type WorkspaceManifest$Outbound = { session_id: string; files?: Array | undefined; paths?: Array | undefined; }; /** @internal */ export declare const WorkspaceManifest$outboundSchema: z.ZodType; export declare function workspaceManifestToJSON(workspaceManifest: WorkspaceManifest): string; export declare function workspaceManifestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workspacemanifest.d.ts.map