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