import React from "react"; interface FeeWithPopoverProps { gasFee: string; serviceFee: string; } export default function FeeWithPopover({ gasFee, serviceFee }: FeeWithPopoverProps): React.JSX.Element; export {};