import { IAccount, IAccountConfig } from '../dataSource/models/accountModel'; declare class AccountAccountConfigController { hasAccountConfigKey(account: IAccount, accountConfigKey: string): boolean; getAccountConfigByKey(account: IAccount, accountConfigKey: string): IAccountConfig | null; getAccountConfigById(account: IAccount, accountConfigId: string): IAccountConfig | null; getAccountConfig(accountId: string, accountConfigId: string): Promise; getAccountConfigs(accountId: string): Promise; updateAccountConfig(accountId: string, accountConfigId: string, value: string): Promise; } declare const _default: AccountAccountConfigController; export default _default;