import React from 'react'; export interface ITable { bordered?: boolean; className?: string; hover?: boolean; id?: string; responsive?: true | 'sm' | 'md' | 'lg' | 'xl'; size?: 'sm'; striped?: boolean; style?: React.CSSProperties; variant?: 'light' | 'dark'; [x: string]: any; } export declare const Table: React.FC;