import { type PropsWithoutRef } from 'react'; import { type DialogContentVariants } from './DialogContent.css'; import { type PaperProps } from '../../../../layout/Paper'; export type DialogContentOwnProps = DialogContentVariants & { width?: number | string; }; export type DialogContentProps = Omit>, 'as'> & DialogContentOwnProps; export declare const DialogContent: import("react").ForwardRefExoticComponent, "ref">, "as"> & { autoResizeWidth?: boolean | undefined; } & { width?: string | number | undefined; } & { children?: import("react").ReactNode; } & import("react").RefAttributes>; //# sourceMappingURL=DialogContent.d.ts.map