import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListMerchantAccountsRequest = { /** * A pointer to the page of results to return. */ cursor?: string | null | undefined; /** * The maximum number of items that are at returned. */ limit?: number | undefined; /** * The search term to filter merchant accounts by. */ search?: string | null | undefined; }; export type ListMerchantAccountsResponse = { result: components.MerchantAccounts; }; /** @internal */ export type ListMerchantAccountsRequest$Outbound = { cursor?: string | null | undefined; limit: number; search?: string | null | undefined; }; /** @internal */ export declare const ListMerchantAccountsRequest$outboundSchema: z.ZodType; export declare function listMerchantAccountsRequestToJSON(listMerchantAccountsRequest: ListMerchantAccountsRequest): string; /** @internal */ export declare const ListMerchantAccountsResponse$inboundSchema: z.ZodType; export declare function listMerchantAccountsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listmerchantaccounts.d.ts.map