import React from 'react'; interface SwapOptionItemProps { optionName: string; quoteLabel: string; txCostLabel: string; isBestQuote?: boolean; onClick: (event: React.MouseEvent) => void; } declare const SwapOptionItem: ({ quoteLabel, txCostLabel, onClick, optionName, isBestQuote }: SwapOptionItemProps) => JSX.Element; export default SwapOptionItem;