import "./Table.scss";
export interface Props {
    cols: Array<any>;
    data: Array<any>;
    bordered?: boolean;
    hoverable?: boolean;
    striped?: boolean;
    isDark?: boolean;
    searchable?: boolean;
    customClass?: string;
    customId?: string;
    tableCaption?: string;
    sortable?: boolean;
}
declare const Table: ({ cols, data, bordered, hoverable, striped, isDark, searchable, customClass, customId, tableCaption, sortable, }: Props) => import("react/jsx-runtime").JSX.Element;
export default Table;
