1 | import * as React from "react";
|
2 | import { Sizes } from "react-bootstrap";
|
3 |
|
4 | declare namespace Well {
|
5 | export interface WellProps extends React.HTMLProps<Well> {
|
6 | bsSize?: Sizes | undefined;
|
7 | bsStyle?: string | undefined;
|
8 | bsClass?: string | undefined;
|
9 | }
|
10 | }
|
11 | declare class Well extends React.Component<Well.WellProps> {}
|
12 | export = Well;
|