1 | import * as React from "react";
|
2 | import { AbstractPureComponent } from "../../common";
|
3 | import { Props } from "../../common/props";
|
4 | export interface DialogBodyProps extends Props {
|
5 | /** Dialog body contents. */
|
6 | children?: React.ReactNode;
|
7 | /**
|
8 | * Enable scrolling for the container
|
9 | *
|
10 | * @default true
|
11 | */
|
12 | useOverflowScrollContainer?: boolean;
|
13 | }
|
14 | /**
|
15 | * Dialog body component.
|
16 | *
|
17 | * @see https://blueprintjs.com/docs/#core/components/dialog.dialog-body-props
|
18 | */
|
19 | export declare class DialogBody extends AbstractPureComponent<DialogBodyProps> {
|
20 | static defaultProps: DialogBodyProps;
|
21 | render(): JSX.Element;
|
22 | }
|