import React, { PropsWithChildren } from "react"; import { ModalProps, ModalWrapperProps } from "./types"; export declare const MODAL_SWIPE_TO_CLOSE_VELOCITY = 300; export declare const ModalWrapper: ({ children, onDismiss, minWidth, ...props }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; declare const Modal: React.FC>; export default Modal;