import { WebTokenWithBalanceAndPrice } from '@argent/x-shared'; import { ChakraProps } from '@chakra-ui/react'; export interface TokenRowItem { symbol?: WebTokenWithBalanceAndPrice["symbol"]; name?: WebTokenWithBalanceAndPrice["name"]; address?: WebTokenWithBalanceAndPrice["address"]; balance?: WebTokenWithBalanceAndPrice["balance"]; decimals?: WebTokenWithBalanceAndPrice["decimals"]; iconUrl?: WebTokenWithBalanceAndPrice["iconUrl"]; currencyValue?: WebTokenWithBalanceAndPrice["currencyValue"]; currencySymbol?: WebTokenWithBalanceAndPrice["currencySymbol"]; } interface TokenRowProps extends ChakraProps { onClick: (token: T) => void; iconSize?: string; token: T; } declare function TokenRow({ onClick, token, iconSize, ...props }: TokenRowProps): import("react").JSX.Element; export type { TokenRowProps }; export { TokenRow };