import { type ComponentProps, type FC, type PropsWithChildren } from 'react'; import { Center } from '../Layout'; type Props = PropsWithChildren<{ isOpen: boolean; as?: ComponentProps['as']; } & ComponentProps<'div'>>; export declare const DialogOverlap: FC; export {};