import { Map as ImmutableMap, Record as ImmutableRecord } from "immutable"; export interface AccountState { nonce: string | undefined; balance: string | undefined; storage: ImmutableMap; code: string | undefined; storageCleared: boolean; } export declare const makeAccountState: ImmutableRecord.Factory; export declare const makeEmptyAccountState: ImmutableRecord.Factory; //# sourceMappingURL=AccountState.d.ts.map