import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ConnectedRepository, ConnectedRepository$Outbound } from "./connectedrepository.js"; export type Connection = { githubLogin: string; githubUserId: number; scopes: string; syncedAt: Date; repositories: Array; }; /** @internal */ export declare const Connection$inboundSchema: z.ZodType; /** @internal */ export type Connection$Outbound = { github_login: string; github_user_id: number; scopes: string; synced_at: string; repositories: Array; }; /** @internal */ export declare const Connection$outboundSchema: z.ZodType; export declare function connectionToJSON(connection: Connection): string; export declare function connectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=connection.d.ts.map