UNPKG

455 BTypeScriptView Raw
1import { BsPrefixAndClassNameOnlyProps, BsPrefixRefForwardingComponent } from './helpers';
2export interface TableProps extends BsPrefixAndClassNameOnlyProps {
3 striped?: boolean;
4 bordered?: boolean;
5 borderless?: boolean;
6 hover?: boolean;
7 size?: string;
8 variant?: string;
9 responsive?: boolean | string;
10}
11declare type Table = BsPrefixRefForwardingComponent<'table', TableProps>;
12declare const Table: Table;
13export default Table;