import * as React from 'react'; import { TableNode } from '@table-library/react-table-library/types/table'; import { Layout } from '@table-library/react-table-library/types/layout'; import { Theme } from '@table-library/react-table-library/types/theme'; declare const Table: React.ForwardRefExoticComponent; theme?: Theme | undefined; layout?: Layout | undefined; sort?: import("../../types").Sort | undefined; pagination?: import("../../types").Pagination | undefined; select?: import("../../types").Select | undefined; tree?: import("../../types").Tree | undefined; onInit?: import("@table-library/react-table-library/types/table").OnInitFunction | undefined; children?: ((nodes: import("@table-library/react-table-library/types/table").ExtendedNode[]) => React.ReactNode) | undefined; } & import("@table-library/react-table-library/types/table").RestProps, string> & React.RefAttributes>; export { Table };