import { default as React } from 'react'; export interface CellProps { children: React.ReactNode; textAlign?: "start" | "end" | "center" | "left" | "right"; /** * PRIVATE * Prop for internal implementation. Matches the cell * to it's corresponding entry in `colVisibility` */ _colIndex?: number; } declare const Cell: ({ children, textAlign, _colIndex }: CellProps) => React.JSX.Element; export default Cell; //# sourceMappingURL=Cell.d.ts.map