import { ApiResponse, ExtraOptions } from "../../request"; import { Payee, PayeesSearchParams } from "../../schema/payee"; export interface PayeesRequests { addPayee: ({ accountNumber, sortCode, name, externalId, userId, }: { accountNumber: string; sortCode: string; name: string; externalId?: string; userId?: string; }, options?: ExtraOptions) => Promise>; getPayees: (params?: PayeesSearchParams, options?: ExtraOptions) => Promise>; getPayee: ({ id }: { id: string; }, options?: ExtraOptions) => Promise>; } //# sourceMappingURL=payees.d.ts.map