import { IERC20 } from "./erc20"; export interface IERC20Snapshot extends IERC20 { getBalanceAt(account: string, snapshotId: any): Promise; getTotalSupplyAt(snapshotId: any): Promise; }