import { SxProps } from '@mui/system'; import React from 'react'; export declare enum ModalHeaderType { Main = 0, Confirm = 1, Sign = 2, Sent = 3, Failed = 4, Slippage = 5, GasPrice = 6, SelectToken = 7, AdvancedSettings = 8, AddToken = 9, Import = 10, Custom = 11, Route = 12, Connection = 13 } export interface BaseModalProps { headerType: ModalHeaderType; isOpen: boolean; closeModal?: () => void; goBack?: () => void; openSettings?: () => void; onReset?: () => void; children?: React.ReactNode; hide?: boolean; sx?: SxProps; } export declare const Modal: ({ headerType, isOpen, closeModal, goBack, onReset, openSettings, children, hide, sx, }: BaseModalProps) => JSX.Element | null;