import { PropsWithChildren } from 'react'; interface BackDropLiftContainerProps extends PropsWithChildren { isOpen: boolean; onClose?: () => void; isBackgroundBlack?: boolean; isPreventScroll?: boolean; isBottomSheet?: boolean; isFullSize?: boolean; testId?: string; } declare const BackDropLiftContainer: ({ isOpen, onClose, children, isBackgroundBlack, isPreventScroll, isBottomSheet, isFullSize, testId, }: BackDropLiftContainerProps) => import("react/jsx-runtime").JSX.Element | null; export { BackDropLiftContainer };