import * as z from "zod/v3"; export type DeleteSourceAccountRequest = { /** * Unique identifier for a company. */ companyId: string; /** * Unique identifier for a connection. */ connectionId: string; /** * Unique identifier for an account. */ accountId: string; }; /** @internal */ export type DeleteSourceAccountRequest$Outbound = { companyId: string; connectionId: string; accountId: string; }; /** @internal */ export declare const DeleteSourceAccountRequest$outboundSchema: z.ZodType; export declare function deleteSourceAccountRequestToJSON(deleteSourceAccountRequest: DeleteSourceAccountRequest): string; //# sourceMappingURL=deletesourceaccount.d.ts.map