import type { ChainInfo } from '@particle-network/chains';
import React from 'react';
type IProps = {
    openGasDrawer: () => void;
    signLoading: boolean;
    chainInfo: ChainInfo;
    signMethod: string;
};
declare function GasDisplay(props: IProps): React.JSX.Element;
export default GasDisplay;
