import { PropsWithChildren } from 'react'; export interface BottomModalContainerProps extends PropsWithChildren { onClose: () => void; isFixedHeight?: boolean; className?: string; } declare const BottomModalContainer: ({ children, onClose, isFixedHeight, className, }: BottomModalContainerProps) => import("react/jsx-runtime").JSX.Element; export { BottomModalContainer };