UNPKG

324 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;
7 bsStyle?: string;
8 bsClass?: string;
9 }
10}
11declare class Well extends React.Component<Well.WellProps> { }
12export = Well;