import React from 'react'; import { Theme } from '@mui/material'; import { SxProps } from '@mui/system'; import { LinkItem } from '../footer/footer-new'; import { RegenModalProps } from '../modal'; export interface ItemValue { name: string | number; url?: string; icon?: React.ReactNode; } export interface Item { label: string; value: ItemValue | ItemValue[]; color?: string; } interface LinkProps extends LinkItem { className?: string; sx?: SxProps; } export declare type LinkComponentProp = React.FC; export interface TxModalProps extends RegenModalProps { onButtonClick: () => void; cardTitle: string; buttonTitle?: string; cardItems?: Item[]; linkComponent: LinkComponentProp; txHash: string; txHashUrl: string; icon?: JSX.Element; title?: string; description?: string; } interface CardItemProps extends Item { linkComponent: LinkComponentProp; } export declare const CardItem: React.FC; declare const TxModal: React.FC; export { TxModal };