import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import * as components from "../components/index.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type TriggerWorkflowRequest = {
    /**
     * The unique identifier of the account.
     */
    accountId: string;
    /**
     * The unique identifier of the workflow.
     */
    workflowId: string;
    triggerWorkflow: components.TriggerWorkflow;
};
/** @internal */
export declare const TriggerWorkflowRequest$inboundSchema: z.ZodType<TriggerWorkflowRequest, z.ZodTypeDef, unknown>;
/** @internal */
export type TriggerWorkflowRequest$Outbound = {
    accountId: string;
    workflowId: string;
    TriggerWorkflow: components.TriggerWorkflow$Outbound;
};
/** @internal */
export declare const TriggerWorkflowRequest$outboundSchema: z.ZodType<TriggerWorkflowRequest$Outbound, z.ZodTypeDef, TriggerWorkflowRequest>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace TriggerWorkflowRequest$ {
    /** @deprecated use `TriggerWorkflowRequest$inboundSchema` instead. */
    const inboundSchema: z.ZodType<TriggerWorkflowRequest, z.ZodTypeDef, unknown>;
    /** @deprecated use `TriggerWorkflowRequest$outboundSchema` instead. */
    const outboundSchema: z.ZodType<TriggerWorkflowRequest$Outbound, z.ZodTypeDef, TriggerWorkflowRequest>;
    /** @deprecated use `TriggerWorkflowRequest$Outbound` instead. */
    type Outbound = TriggerWorkflowRequest$Outbound;
}
export declare function triggerWorkflowRequestToJSON(triggerWorkflowRequest: TriggerWorkflowRequest): string;
export declare function triggerWorkflowRequestFromJSON(jsonString: string): SafeParseResult<TriggerWorkflowRequest, SDKValidationError>;
//# sourceMappingURL=triggerworkflow.d.ts.map