import { PropsWithChildren } from 'react'; import { JSONRecord } from '../../interfaces/JSONRecord.js'; import { UseTableProps } from './hooks/useTable'; export interface TableProps extends UseTableProps { className?: string; enableFooter?: boolean; enablePagination?: boolean; } export declare function Table({ className, enableFooter, enablePagination, children, ...props }: PropsWithChildren>): import("react/jsx-runtime").JSX.Element;