1 | import * as React from "react";
|
2 | import { TransitionCallbacks } from "react-bootstrap";
|
3 |
|
4 | declare namespace Fade {
|
5 | export interface FadeProps extends TransitionCallbacks, React.HTMLProps<Fade> {
|
6 | in?: boolean | undefined;
|
7 | timeout?: number | undefined;
|
8 | mountOnEnter?: boolean | undefined;
|
9 | appear?: boolean | undefined;
|
10 | unmountOnExit?: boolean | undefined;
|
11 | }
|
12 | }
|
13 | declare class Fade extends React.Component<Fade.FadeProps> {}
|
14 | export = Fade;
|