import * as React from "react"; import { Nullable } from "../../lib"; type TableCellProps = { iconElement: Nullable; primaryText: Nullable; secondaryText: Nullable; primaryLink: Nullable; secondaryLink: Nullable; }; declare function TableCell({ iconElement, primaryText, secondaryText, primaryLink, secondaryLink, }: TableCellProps): import("react/jsx-runtime").JSX.Element; export { TableCell }; //# sourceMappingURL=TableCell.d.ts.map