1 | import * as React from "react";
|
2 | import { TransitionCallbacks } from "react-bootstrap";
|
3 |
|
4 | declare namespace Overlay {
|
5 | export interface OverlayProps extends TransitionCallbacks {
|
6 | children?: React.ReactNode;
|
7 |
|
8 | animation?: any;
|
9 | container?: any;
|
10 | containerPadding?: number | undefined;
|
11 | onHide?: Function | undefined;
|
12 | placement?: "top" | "right" | "bottom" | "left" | undefined;
|
13 | rootClose?: boolean | undefined;
|
14 | show?: boolean | undefined;
|
15 | target?: Function | React.ReactInstance | undefined;
|
16 | shouldUpdatePosition?: boolean | undefined;
|
17 | }
|
18 | }
|
19 | declare class Overlay extends React.Component<Overlay.OverlayProps> {}
|
20 | export = Overlay;
|