import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as shared from "../shared/index.js"; export type ListSourceAccountsRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; }; /** * Success */ export type ListSourceAccountsResponseBody = Array | Array; /** @internal */ export type ListSourceAccountsRequest$Outbound = { companyId: string; connectionId: string; }; /** @internal */ export declare const ListSourceAccountsRequest$outboundSchema: z.ZodType; export declare function listSourceAccountsRequestToJSON(listSourceAccountsRequest: ListSourceAccountsRequest): string; /** @internal */ export declare const ListSourceAccountsResponseBody$inboundSchema: z.ZodType; export declare function listSourceAccountsResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listsourceaccounts.d.ts.map