import React from 'react'; import { UserBill } from '../../../../types/yourbonds'; declare const TransferAction: ({ userBill, toAddress, disabled, }: { userBill?: UserBill; toAddress?: string; disabled?: boolean; }) => React.JSX.Element; export default TransferAction;