import { FC, PropsWithChildren } from 'react'; type TBackdropProps = PropsWithChildren<{ show?: boolean; onDismiss?: () => void; }>; declare const Backdrop: FC; export { Backdrop };