import { PartialRecord } from "../utils/types"; import { NormalToken } from "./normal"; import type { TokenBase } from "./token"; import { TokenNetwork, TokenType } from "./tokenType"; export type CompoundV2LPToken = "cDAI" | "cUSDC" | "cETH" | "cUSDT" | "cLINK" | "fUSDC"; export type CompoundV2PoolTokenData = { symbol: CompoundV2LPToken; type: PartialRecord; underlying: NormalToken; } & TokenBase; export declare const compoundV2Tokens: Record; export declare const isCompoundV2LPToken: (t: unknown) => t is CompoundV2LPToken;