import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type EntitySyncConfig = { /** * Inbound from external provider to FlexPrice */ inbound?: boolean | undefined; /** * Outbound from FlexPrice to external provider */ outbound?: boolean | undefined; }; /** @internal */ export declare const EntitySyncConfig$inboundSchema: z.ZodMiniType; export declare function entitySyncConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=entity-sync-config.d.ts.map