import { EthqlContext } from '@ethql/base'; import { EthqlAccount, EthqlAccountType, StorageAccessor } from '../model'; declare function balance(obj: EthqlAccount, { unit }: { unit: any; }, { services: { eth } }: EthqlContext): Promise; declare function code(obj: EthqlAccount, args: any, { services: { eth } }: EthqlContext): Promise; declare function transactionCount(obj: EthqlAccount, args: any, { services: { eth } }: EthqlContext): Promise; declare function storage({ address }: EthqlAccount, args: any): StorageAccessor; declare function type(obj: EthqlAccount, args: any, { services: { eth } }: EthqlContext): Promise; declare const _default: { Account: { balance: typeof balance; code: typeof code; transactionCount: typeof transactionCount; storage: typeof storage; type: typeof type; }; }; export default _default; //# sourceMappingURL=account.d.ts.map