import { ReactNode } from "react"; import { BoxProps } from "./Box"; export declare type TableCellProps = { children?: ReactNode; isHeader?: boolean; align?: BoxProps["textAlign"]; }; export declare const TableCell: ({ children, isHeader, align, }: TableCellProps) => import("@emotion/react/jsx-runtime").JSX.Element;