import { MerchantSite } from '../types'; type WarningModalProps = { open?: boolean; site?: MerchantSite; onClickStay?: () => void; onClickLeave?: () => void; }; declare function WarningModal({ open, site, onClickLeave, onClickStay, }: WarningModalProps): import("@emotion/react/jsx-runtime").JSX.Element | null; export default WarningModal;