import * as React from "react";
import type * as Common from "../../../common/types";
interface Props extends Common.Globals {
    shown: boolean;
    lockScrolling?: boolean;
    dialogId: string;
    labelClose: React.ReactNode;
    children: React.ReactNode;
    onClose: (ev: React.SyntheticEvent<HTMLElement>) => void;
}
declare const DialogContent: ({ dataTest, shown, lockScrolling, labelClose, dialogId, children, onClose, }: Props) => JSX.Element;
export default DialogContent;
