import * as React from "react"; import { ISheetContents } from "trc-sheet/sheetContents"; interface IProps { data: ISheetContents; colors?: ISheetContents; customColumn?: React.ReactNode; disableQueryString?: boolean; downloadIcon?: boolean; downloadPdf?: boolean; onRowClick?: (recId: string) => void; rowIdentifier?: number; selectedRows?: { [dynamic: string]: boolean; }; defaultSortBy?: string; defaultGroupBy?: string; columnsOrdering?: string[]; hideUnspecifiedColumns?: boolean; hasFullScreen?: boolean; hasColumnFiltering?: boolean; hasGroupBy?: boolean; tableIdentifier?: string; resultMessage?: (found: number, total: number) => React.ReactNode; } export declare function SimpleTable({ colors, customColumn, data, disableQueryString, downloadIcon, downloadPdf, onRowClick, rowIdentifier, selectedRows, defaultSortBy, defaultGroupBy, columnsOrdering, hasFullScreen, hasColumnFiltering, hasGroupBy, tableIdentifier, resultMessage, hideUnspecifiedColumns, }: IProps): JSX.Element; export {};