import * as z from "zod/v3"; import * as components from "../components/index.js"; export type TriggerWorkflowRequest = { /** * The unique identifier of the account. */ accountId?: string | undefined; workflowId?: string | undefined; triggerWorkflow: components.TriggerWorkflow; }; /** @internal */ export type TriggerWorkflowRequest$Outbound = { accountId: string; workflowId: string; TriggerWorkflow: components.TriggerWorkflow$Outbound; }; /** @internal */ export declare const TriggerWorkflowRequest$outboundSchema: z.ZodType; export declare function triggerWorkflowRequestToJSON(triggerWorkflowRequest: TriggerWorkflowRequest): string; //# sourceMappingURL=triggerworkflow.d.ts.map