import React from "react"; export interface CellNumericProps { readonly value: number | string; } export declare function CellNumeric({ value }: CellNumericProps): React.JSX.Element;