import { FC, HTMLAttributes } from 'react'; export interface Props extends HTMLAttributes { label?: string; rows?: any[]; } export declare const WalletContentTable: FC;