import type { TableProps } from "react-bootstrap/Table"; import type { BsPrefixRefForwardingComponent } from "react-bootstrap/helpers"; import type { ReactNode } from "react"; export interface ITableProps extends Omit { children?: ReactNode; } export declare type ITable = BsPrefixRefForwardingComponent<"table", ITableProps>; export declare const Table: ITable; export default Table;