import React, { PropsWithChildren } from "react"; type RootModalProps = { /** * Callback method invoked when the user presses outside the child content. */ onBackdropPress?: () => void; }; export declare const RootModal: ({ onBackdropPress, children }: PropsWithChildren) => React.JSX.Element; export {};