import React from "react"; import { Table as ReactTable } from "@tanstack/react-table"; import { TableConfig } from "../core"; import { FetcherState } from "../fetcher"; import { StateFunctions, TableState } from "../core/types"; export interface Props> { reactTable: ReactTable; tableState: TableState; tableConfig: TableConfig; fetcherState: FetcherState; stateFunctions: StateFunctions; } export declare function TableusRenderer>({ reactTable, tableConfig, fetcherState, tableState, }: Props): React.JSX.Element; //# sourceMappingURL=index.d.ts.map