import type { IComponent } from "../../types/index.d.mts"; import { BlockTableBody, BlockTableCaption, BlockTableCell, BlockTableFoot, BlockTableHead, BlockTableRow, BlockTableSortBtn } from "./components/index.d.mts"; import type { IBlockTable, IOnBlockTableRowClickArg, TBlockTableItemType, IOnBlockTableSortArgs, IBlockTableSortBtn, IBlockTableCell, IBlockTableRow } from "./config/types/index.d.mts"; /** * Компонент адаптивных таблиц * @returns */ declare const BlockTable: IComponent; export type { IBlockTable, IBlockTableCell, IBlockTableRow, IBlockTableSortBtn, IOnBlockTableRowClickArg, IOnBlockTableSortArgs, TBlockTableItemType, }; export { BlockTable, BlockTableBody, BlockTableCaption, BlockTableCell, BlockTableFoot, BlockTableHead, BlockTableRow, BlockTableSortBtn, };