import React from "react";
import { TypographyProps, TypographyVariant } from "./Typography";
export type DialogContentProps = TypographyProps & {
    children: React.ReactNode;
    hidden?: boolean;
    className?: string;
    includeMargin?: boolean;
    variant?: TypographyVariant;
};
export declare function DialogTitle({ children, hidden, className, variant, gutterBottom, includeMargin, ...props }: DialogContentProps): import("react/jsx-runtime").JSX.Element;
