import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ResourceTypeEnum } from "./resourcetypeenum.js"; import { SyncActionEnum } from "./syncactionenum.js"; export type SyncedWorkflowDto = { /** * Type of the layout */ resourceType: ResourceTypeEnum; /** * Resource ID */ resourceId: string; /** * Resource name */ resourceName: string; /** * Sync action performed */ action: SyncActionEnum; }; /** @internal */ export declare const SyncedWorkflowDto$inboundSchema: z.ZodType; export declare function syncedWorkflowDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=syncedworkflowdto.d.ts.map