import React, { ReactNode } from 'react';
export interface ModalProviderProps {
    children: ReactNode;
    /**
     * Enable it if you want to wrap the modals with the Suspense feature.
     * @see https://beta.reactjs.org/reference/react/Suspense
     */
    suspense?: boolean;
    /**
     * Custom fallback for the Suspense fallback
     * @see https://beta.reactjs.org/reference/react/Suspense#displaying-a-fallback-while-content-is-loading
     */
    fallback?: ReactNode | null;
}
export default function ModalProvider({ children, suspense, fallback, }: ModalProviderProps): React.JSX.Element;
