import { DottedPaginationProps } from '../dotted-pagination/DottedPagination'; export type EiceTableProps = { type?: 'default' | 'single'; rows: object[]; columnNames: string[]; tableTitleProps?: any; tableValueProps?: any; pagination?: DottedPaginationProps; }; declare const EliceTable: ({ type, rows, columnNames, tableTitleProps, tableValueProps, pagination, }: EiceTableProps) => import("react/jsx-runtime").JSX.Element; export default EliceTable;