1 | import * as React from "react";
|
2 |
|
3 | declare namespace Grid {
|
4 | export interface GridProps extends React.HTMLProps<Grid> {
|
5 | componentClass?: React.ElementType | undefined;
|
6 | fluid?: boolean | undefined;
|
7 | bsClass?: string | undefined;
|
8 | }
|
9 | }
|
10 | declare class Grid extends React.Component<Grid.GridProps> {}
|
11 | export = Grid;
|