import { ReactNode } from "react"; declare type DialogContentAlign = "left" | "center" | "right"; interface DialogContentProps { align?: DialogContentAlign; isolated?: boolean; children?: ReactNode; } export default function DialogContent(props: DialogContentProps): JSX.Element; export {};