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