import { ButtonProps } from '@chakra-ui/react'; import { FC, ReactNode } from 'react'; export interface TokenButtonProps extends ButtonProps { name: string; symbol: string; image: string; bigFont?: boolean; getTokenIconUrl: ({ name, url }: { name: string; url: string; }) => string; subtitle?: string | ReactNode; hoverButton?: ReactNode; valueLabelPrimary: string | ReactNode; valueLabelSecondary?: string | ReactNode | undefined; isLoading?: boolean; showTokenSymbol?: boolean; errorMessage?: { message: string; description: string; }; } declare const TokenButton: FC; export { TokenButton };