/// <reference types="react" />
import { TableProps, DataSource } from "./types";
export declare function Table<T extends object = DataSource>({ exportable, exportableProps, searchable, searchableProps, dataSource, columns, ...otherProps }: TableProps<T>): JSX.Element;
