import { BoxProps } from '@dodoex/components'; export interface TokenLogoPairProps { tokens: Array<{ address?: string; logoURI?: string; } | string>; width?: number; height?: number; gap?: number; cross?: boolean; mr?: number; chainId?: number; showChainLogo?: boolean; sx?: BoxProps['sx']; } export declare function TokenLogoPair({ tokens, width, height, gap, cross, mr, chainId, showChainLogo: showChainLogoProps, sx, }: TokenLogoPairProps): import("react").JSX.Element;