import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface TableCellBaseProps { /** The content of the component. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; /** * Set the `text-align` css property of the table cell. * @default "inherit" */ textAlign?: "inherit" | "center" | "justify" | "left" | "right"; } export declare type TableCellProps = MergeElementProps<"td" | "th", TableCellBaseProps>; declare type Component = { (props: TableCellProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const TableCell: Component; export default TableCell;