import * as React from 'react'; export type CellProps = React.TdHTMLAttributes & { /** * Whether this cell contains numeric data (will be right-aligned) */ numeric?: boolean; stickyLeft?: boolean; stickyRight?: boolean; stickyTop?: boolean; stickyBottom?: boolean; }; export declare const Cell: React.ForwardRefExoticComponent & { /** * Whether this cell contains numeric data (will be right-aligned) */ numeric?: boolean; stickyLeft?: boolean; stickyRight?: boolean; stickyTop?: boolean; stickyBottom?: boolean; } & React.RefAttributes>;