import type { StakingRewardsContract } from "../contracts/contracts"; import { PartialRecord } from "../utils/types"; import type { SupportedToken, TokenBase } from "./token"; import { TokenNetwork, TokenType } from "./tokenType"; export type StakingRewardsPhantomToken = "stkUSDS"; export type StakingRewardsPhantomTokenData = { symbol: StakingRewardsPhantomToken; type: PartialRecord; underlying: SupportedToken; pool: StakingRewardsContract; } & TokenBase; export declare const stakingRewardsPhantomTokens: Record; export declare const stakingRewardsTokens: Record; export declare const isStakingRewardsPhantomToken: (t: unknown) => t is "stkUSDS"; export declare const zircuitStakedTokenByToken: PartialRecord;