import { JSX } from "solid-js"; import { BsPrefixOnlyProps } from "./helpers"; export interface TableProps extends BsPrefixOnlyProps, JSX.HTMLAttributes { striped?: boolean; bordered?: boolean; borderless?: boolean; hover?: boolean; size?: string; variant?: string; responsive?: boolean | string; } declare const Table: (p: TableProps) => JSX.Element; export default Table;