import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WorkspaceFile = { path: string; size?: number | undefined; etag?: string | null | undefined; }; /** @internal */ export declare const WorkspaceFile$inboundSchema: z.ZodType; /** @internal */ export type WorkspaceFile$Outbound = { path: string; size: number; etag?: string | null | undefined; }; /** @internal */ export declare const WorkspaceFile$outboundSchema: z.ZodType; export declare function workspaceFileToJSON(workspaceFile: WorkspaceFile): string; export declare function workspaceFileFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=workspacefile.d.ts.map