import { PartialRecord } from "../utils/types"; import type { SupportedToken, TokenBase } from "./token"; import { TokenNetwork, TokenType } from "./tokenType"; export type ZircuitStakedPhantomToken = "zpufETH"; export type ZircuitPhantomTokenData = { symbol: ZircuitStakedPhantomToken; type: PartialRecord; underlying: SupportedToken; } & TokenBase; export declare const zircuitStakedPhantomTokens: Record; export declare const zircuitTokens: Record; export declare const isZircuitStakedPhantomToken: (t: unknown) => t is "zpufETH"; export declare const zircuitStakedTokenByToken: PartialRecord;