import { SimplifiedColumn, AdminRowNav } from "../types/types"; type ObjectTableProps = { list: Record[]; resourcePath: string; curTable: string; basePath: string; columns: SimplifiedColumn[]; curRow: Record; RowActions?: AdminRowNav; }; export declare function ObjectTable(props: ObjectTableProps): import("react/jsx-runtime").JSX.Element; export {};