UNPKG

644 BTypeScriptView Raw
1import * as React from "react";
2import { AbstractPureComponent2 } from "../../common";
3import { Props } from "../../common/props";
4export 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 */
19export declare class DialogBody extends AbstractPureComponent2<DialogBodyProps> {
20 static defaultProps: DialogBodyProps;
21 render(): JSX.Element;
22}