import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SyncConnectionRequest = { connectionId: string; }; /** @internal */ export declare const SyncConnectionRequest$inboundSchema: z.ZodType; /** @internal */ export type SyncConnectionRequest$Outbound = { connection_id: string; }; /** @internal */ export declare const SyncConnectionRequest$outboundSchema: z.ZodType; export declare function syncConnectionRequestToJSON(syncConnectionRequest: SyncConnectionRequest): string; export declare function syncConnectionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=syncconnection.d.ts.map