import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GitHubReadCloneResult = { sessionId: string; assignmentGeneration: number; repositoryId: number; owner: string; repository: string; baseSha: string; }; /** @internal */ export declare const GitHubReadCloneResult$inboundSchema: z.ZodType; /** @internal */ export type GitHubReadCloneResult$Outbound = { session_id: string; assignment_generation: number; repository_id: number; owner: string; repository: string; base_sha: string; }; /** @internal */ export declare const GitHubReadCloneResult$outboundSchema: z.ZodType; export declare function gitHubReadCloneResultToJSON(gitHubReadCloneResult: GitHubReadCloneResult): string; export declare function gitHubReadCloneResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=githubreadcloneresult.d.ts.map