import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Represents the result of an ad-hoc sync request. */ export type StartScheduledSyncResult = { /** * The unique identifier for the created sync. */ syncId: string; }; /** @internal */ export declare const StartScheduledSyncResult$inboundSchema: z.ZodType; export declare function startScheduledSyncResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=startscheduledsyncresult.d.ts.map