import { default as React } from 'react'; import * as tokens from "./icons"; /** * Props for the Token component */ interface TokenProps { /** The token symbol to display (BTC, ETH, USDC, or WLD) */ value: keyof typeof tokens; /** Width and height in pixels of the token icon (default: 40) */ size?: number; /** Variant of the token icon (default: "default") */ variant?: "color" | "monochrome"; /** Whether the token is disabled */ disabled?: boolean; } declare const Token: React.FC; export { Token }; export type { TokenProps };