import * as z from "zod/v3";
export type GetWorkflowInstanceRequest = {
    /**
     * The unique identifier of the account.
     */
    accountId?: string | undefined;
    workflowId?: string | undefined;
    /**
     * Unique identifier for the workflow instance
     */
    instanceId: string;
};
/** @internal */
export type GetWorkflowInstanceRequest$Outbound = {
    accountId: string;
    workflowId: string;
    instanceId: string;
};
/** @internal */
export declare const GetWorkflowInstanceRequest$outboundSchema: z.ZodType<GetWorkflowInstanceRequest$Outbound, z.ZodTypeDef, GetWorkflowInstanceRequest>;
export declare function getWorkflowInstanceRequestToJSON(getWorkflowInstanceRequest: GetWorkflowInstanceRequest): string;
//# sourceMappingURL=getworkflowinstance.d.ts.map