import { type FC } from 'react'; import type { DirectChildren, UncontrolledDialogProps } from './types'; type DialogContentContextType = { onClickClose: () => void; }; export declare const DialogContentContext: import("react").Context; type Props = UncontrolledDialogProps & DirectChildren; export declare const DialogContent: FC; export {};