import { type ListItemProps } from '@mui/material'; import type { Address, Hex } from '@xylabs/sdk-js'; import React from 'react'; import type { TransferCardHelper } from './TransferRenderCardHelper.tsx'; export interface TransferRenderListItem extends ListItemProps { address?: Address; amount?: Hex; transferCardHelper: TransferCardHelper; } export declare const TransferRenderListItem: React.FC; //# sourceMappingURL=ListItem.d.ts.map