import { Token } from '@uniswap/sdk-core'; export declare const KIRO: ({ chainId }: { chainId: number; }) => Token; export declare const ETH: ({ chainId }: { chainId: number; }) => Token; export declare const UNI: ({ chainId }: { chainId: number; }) => Token; export declare const USDC: ({ chainId }: { chainId: 1 | 5; }) => Token; export declare const DAI: ({ chainId }: { chainId: 1 | 5; }) => Token | { address: string; decimals: number; }; export declare const BAT: ({ chainId }: { chainId: 1 | 5; }) => { chainId: string; address: string; symbol: string; decimals: number; name: string; index: number; logoURI: string; };