import { IAccountRepository } from '../interfaces'; import { IAccount } from '../models'; export declare class AccountService { protected accountRepository: IAccountRepository; constructor(accountRepository: IAccountRepository); create(account: IAccount, tenantId?: string | null): Promise; delete(reference: string, tenantId?: string | null): Promise; find(reference: string, tenantId?: string | null): Promise; }