import React from "react"; import { VibeComponent, VibeComponentProps } from "../../../types"; export interface ITableCellProps extends VibeComponentProps { children?: React.ReactNode; sticky?: boolean; } declare const TableCell: VibeComponent; export default TableCell;