import type { FC, Ref } from 'react'; import { type DrawerContentProps } from '../Drawer'; type DialogContentProps = DrawerContentProps & { ref?: Ref; }; export declare const DialogContent: FC; export {};