/// import { SxProps } from '@mui/system'; export declare enum MainButtonType { Connect = 0, EnterAmount = 1, Swap = 2, Approve = 3, Refresh = 4, MustRefresh = 5, Confirm = 6, Close = 7, InsufficientBalance = 8, InsufficientNativeTokenBalance = 9, Loading = 10, Explorer = 11, Import = 12, Error = 13, EstimateGasError = 14 } interface MainButtonProps { type: MainButtonType; disabled?: boolean; onClick?: () => void; rateExpired?: boolean; explorerName?: string; sx?: SxProps; } export declare const MainButton: ({ type, disabled, onClick, rateExpired, explorerName, sx }: MainButtonProps) => JSX.Element; export {};