import { BaseService } from "./baseService";
import type { AccountData } from "../../types/banking/account/accountdata";
import type { AccountServiceParameters } from "../../types/api/service/accountService";
declare class AccountService extends BaseService {
    protected endpoint: string;
    constructor(data: AccountServiceParameters);
    get(accountId: number): Promise<import("../..").ApiResponse<AccountData>>;
    getLimits(accountId: number): Promise<import("../..").ApiResponse<AccountData>>;
}
export { AccountService };
