import React from 'react';
import type { FeeValue } from '../../hooks/useTokenTransfer';
interface TransferTokenDetailsProps {
    disabled?: boolean;
    estProcessingTime?: number;
    estPriceImpact: FeeValue | undefined;
    maxSlippage: FeeValue | undefined;
    onExpanded?: () => void;
}
export declare const TransferTokenDetails: ({ estProcessingTime, disabled, estPriceImpact, maxSlippage, onExpanded, }: TransferTokenDetailsProps) => React.JSX.Element;
export {};
