import * as React from "react"; import TableCell from "./components/TableCell"; import type { TableContainerProps, TableProps, TableRowProps } from "./types"; declare const TableContainer: ({ children }: TableContainerProps) => JSX.Element; declare const Table: React.FC; declare const TableRow: ({ children, onClick, cellDefault, responsive, colSpan, ...props }: TableRowProps) => JSX.Element; interface TableRowActionProps { children: string; onClick: () => void; icon?: React.ReactElement; } declare const TableRowAction: ({ children, onClick, icon }: TableRowActionProps) => JSX.Element; interface TableRowActionsProps { children?: React.ReactElement | React.ReactElement[]; } declare const TableRowActions: ({ children }: TableRowActionsProps) => JSX.Element; export { TableCell, Table, TableContainer, TableRow, TableRowAction, TableRowActions }; //# sourceMappingURL=table.d.ts.map