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