import { Chain } from 'types';
interface BridgeButtonProps {
    originChain: Chain;
    isValidQuote: boolean;
    handleApprove: () => any;
    handleBridge: () => any;
    isApprovalPending: boolean;
    isBridgePending: boolean;
    isBridgePaused: boolean;
}
export declare const BridgeButton: ({ originChain, isValidQuote, handleApprove, handleBridge, isApprovalPending, isBridgePending, isBridgePaused, }: BridgeButtonProps) => import("react/jsx-runtime").JSX.Element;
export {};
