import { AppKitNetwork } from '@reown/appkit/networks'; export declare enum WalletConnectChainID { Mainnet = "tron:0x2b6653dc", Shasta = "tron:0x94a9059e", Nile = "tron:0xcd8690dc" } export type ChainID = WalletConnectChainID | `tron:${string}`; export declare const mainnet: AppKitNetwork; export declare const nileTestnet: AppKitNetwork; export declare const shastaTestnet: AppKitNetwork; export declare const NETWORK_MAP: Map; export interface ThemeVariables { /** * Base font family. */ '--w3m-font-family'?: string; /** * Color used for buttons, icons, labels, etc. */ '--w3m-accent'?: string; /** * The color that blends in with the default colors. */ '--w3m-color-mix'?: string; /** * The percentage on how much “—w3m-color-mix” should blend in. */ '--w3m-color-mix-strength'?: number; /** * The base pixel size for fonts. */ '--w3m-font-size-master'?: string; /** * The base border radius in pixels. */ '--w3m-border-radius-master'?: string; /** * The z-index of the modal. */ '--w3m-z-index'?: number; /** * The color of the QRCode. */ '--w3m-qr-color'?: string; } //# sourceMappingURL=utils.d.ts.map