import type { ApiResponse, ExtraOptions, SearchParams } from "../../request"; import type { OsipAccount, OsipHolding, OsipTransaction } from "../../schema/osip"; export interface OsipRequests { getOsipAccounts: ({ userId, params }: { userId?: string; params?: SearchParams; }, options?: ExtraOptions) => Promise, "links">>; getOsipAccount: ({ userId, accountId }: { userId?: string; accountId: string; }, options?: ExtraOptions) => Promise, "links">>; getOsipAccountHoldings: ({ userId, accountId, }: { userId?: string; accountId: string; }, options?: ExtraOptions) => Promise>; getOsipAccountTransactions: ({ userId, accountId, }: { userId?: string; accountId: string; }, options?: ExtraOptions) => Promise>; } //# sourceMappingURL=osip.d.ts.map