1 | import * as React from "react";
|
2 | import { Sizes } from "react-bootstrap";
|
3 |
|
4 | declare namespace ModalDialog {
|
5 | export interface ModalDialogProps extends React.HTMLProps<ModalDialog> {
|
6 |
|
7 | onHide?: Function | undefined;
|
8 | onEnter?: Function | undefined;
|
9 | onEntered?: Function | undefined;
|
10 | onEntering?: Function | undefined;
|
11 | onExit?: Function | undefined;
|
12 | onExited?: Function | undefined;
|
13 | onExiting?: Function | undefined;
|
14 | bsSize?: Sizes | undefined;
|
15 | bsClass?: string | undefined;
|
16 | }
|
17 | }
|
18 | declare class ModalDialog extends React.Component<ModalDialog.ModalDialogProps> {}
|
19 | export = ModalDialog;
|