import type { HTMLAttributes } from "react"; export interface DialogContentProps extends HTMLAttributes { /** * Boolean if the default padding for the content should be removed. This is * helpful when the child elements already have the required padding (such as * lists). In all other cases, it is recommended to apply a custom className * with the padding overrides instead. */ disablePadding?: boolean; } /** * This component is used to render the main content within a dialog. There are * really only benefits when using the component alongside the `DialogHeader` * and/or `DialogFooter` since it is set up so only the content will scroll * while the header and footer will be "fixed". */ export declare const DialogContent: import("react").ForwardRefExoticComponent>;