import * as React from 'react'; export * from '@tanstack/table-core'; import { TableOptions, RowData } from '@tanstack/table-core'; export type Renderable = React.ReactNode | React.ComponentType; /** * If rendering headers, cells, or footers with custom markup, use flexRender instead of `cell.getValue()` or `cell.renderValue()`. */ export declare function flexRender(Comp: Renderable, props: TProps): React.ReactNode | React.JSX.Element; export declare function useReactTable(options: TableOptions): import("@tanstack/table-core").Table;