export type ContractInfo = { chain: string; address: `0x${string}`; provider?: string; }; export type PoolInfo = { totalSupply: string; balances: string[]; }; export declare enum WithdrawStatus { UNUSED = 0, UNLOCKING = 1, RELEASED = 2, CANCELLED = 3 }