import React from 'react';
import { ITable } from './types/table';
/**
 * @description
 * Table component is used to display data in a tabular format.
 *
 * @deprecated This component is deprecated. Please use our new DataTable component to display data in a table format. Alternatively, you can create a table manually using the new table-related components: TableV2, TableHead, TableBody, TableRow, TableCell, TableDivider, and TableCaption. This component will be removed in the next major release.
 */
declare const Table: <V extends string | unknown>(props: ITable<V> & {
    ref?: React.ForwardedRef<HTMLTableElement> | undefined | null;
}) => JSX.Element;
export { Table };
