1 | import * as React from 'react';
|
2 | import { SxProps } from '@mui/system';
|
3 | import { InternalStandardProps as StandardProps, Theme } from '..';
|
4 | import { DialogContentClasses } from './dialogContentClasses';
|
5 |
|
6 | export interface DialogContentProps extends StandardProps<React.HTMLAttributes<HTMLDivElement>> {
|
7 | |
8 |
|
9 |
|
10 | children?: React.ReactNode;
|
11 | |
12 |
|
13 |
|
14 | classes?: Partial<DialogContentClasses>;
|
15 | |
16 |
|
17 |
|
18 |
|
19 | dividers?: boolean;
|
20 | |
21 |
|
22 |
|
23 | sx?: SxProps<Theme>;
|
24 | }
|
25 |
|
26 |
|
27 |
|
28 |
|
29 |
|
30 |
|
31 |
|
32 |
|
33 |
|
34 |
|
35 |
|
36 | export default function DialogContent(props: DialogContentProps): React.JSX.Element;
|