import React from "react"; import { type VibeComponentProps } from "../../../types"; export interface TableCellProps extends VibeComponentProps { /** * The content inside the table cell. */ children?: React.ReactNode; /** * If true, makes the cell sticky (typically used for frozen columns). */ sticky?: boolean; } declare const TableCell: React.ForwardRefExoticComponent>; export default TableCell;