import { ImageProps, SquareProps } from '@chakra-ui/react'; import { FC } from 'react'; type GetTokenIconUrlProps = Pick; export declare function getTokenIconUrl(props: GetTokenIconUrlProps): string; export declare function getTokenIconUrlAndRounded({ name, url, iconUrl, image, }: GetTokenIconUrlProps): { src: string; rounded?: undefined; } | { src: string; rounded: string; }; export interface TokenIconProps extends Pick, ImageProps { name: string; url?: string; iconUrl?: string; image?: string; } export declare const TokenIcon: FC; export declare const UnknownTokenIcon: FC; export {};