import FRCTable from "./table"; import FRCTableColumn from "./tableColumn"; import FRCTableColumnGroup from "./tableColumnGroup"; import { FRCSummary, FRCRow, FRCCell } from "./summary"; type FRCTableSummaryProps = typeof FRCSummary & { Row: typeof FRCRow; Cell: typeof FRCCell; }; type FRCTableComponent = typeof FRCTable & { Summary: FRCTableSummaryProps; SELECTION_ALL: any; SELECTION_INVERT: any; SELECTION_NONE: any; EXPAND_COLUMN: any; SELECTION_COLUMN: any; Column: typeof FRCTableColumn; ColumnGroup: typeof FRCTableColumnGroup; }; declare const TransTable: FRCTableComponent; export default TransTable; export type { FRCTableProps, ColumnsTypeProps, FilterValue, SorterResult, PaginationConfig, RowSelectionProps, } from "./table";