import { ColDef } from "ag-grid-community"; import { CacheConfiguration } from "../../../models/CacheConfiguration"; import { QueryCacheActionStats } from "../../../models/QueryCacheStats"; type Props = { setConfiguration: (configuration: CacheConfiguration) => void; setModalUpsert: (showModal: boolean) => void; setModalDelete: (showModal: boolean) => void; onClearCache: (configuration: CacheConfiguration) => void; showContextMenu: Function; cachedActions?: QueryCacheActionStats[]; }; export declare const useTableData: ({ setConfiguration, setModalUpsert, setModalDelete, onClearCache, showContextMenu, cachedActions, }: Props) => { columnDefs: ColDef[]; }; export {};