import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
/**
 * Provider synchronization errors, when synchronization is required.
 */
export type ConnectServiceSyncError = {
    /**
     * Human-readable provider synchronization error.
     */
    message: string;
    /**
     * Connector fields that caused the synchronization error.
     */
    fields?: Array<string> | undefined;
    /**
     * Provider-specific error details that are safe to expose.
     */
    vendor?: {
        [k: string]: any;
    } | undefined;
};
/** @internal */
export declare const ConnectServiceSyncError$inboundSchema: z.ZodType<ConnectServiceSyncError, z.ZodTypeDef, unknown>;
export declare function connectServiceSyncErrorFromJSON(jsonString: string): SafeParseResult<ConnectServiceSyncError, SDKValidationError>;
//# sourceMappingURL=connectservicesyncerror.d.ts.map