import type { DialogContentProps as GcxDialogContentProps } from "@vertigis/react-ui/DialogContent"; import type { FC } from "react"; import type { TranslatableText } from "../../region"; /** * Properties for the `DialogContent` component. */ export type DialogContentProps = Omit & { title?: TranslatableText; "aria-label"?: TranslatableText; }; declare const DialogContent: FC; export default DialogContent;