import { IAccountModel, IPaymeUpdateOrCreateSellerWebhookPayload } from "@nimee/shared-types"; export declare class AccountClient { updateAccountByCreateSellerWebhook(params: { jwt: string; webhookData: IPaymeUpdateOrCreateSellerWebhookPayload; }): Promise; getAccountById(params: { jwt: string; accountId: string; }): Promise; getAccountByHandler(params: { handler: string; }): Promise; updateAccountById(params: { jwt: string; accountId: string; accountData: IAccountModel; }): Promise; getSubAccountsByParentId(params: { jwt: string; accountId: string; }): Promise; getZReportEnabledAccounts(params: { jwt: string; }): Promise; }