UNPKG

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