import { BigNumberish } from 'ethers'; import { BytesLike } from '@ethersproject/bytes'; export type address = string; export type uint256 = BigNumberish; export type uint = BigNumberish; export type uint64 = BigNumberish; export type bytes = BytesLike; export type bytes32 = BytesLike;