import { GridCellValueProps, GridColumnProps } from "./GridColumn"; import "./NumericColumn.css"; import { GridColumnModel, GridRowModel } from "./Grid"; import { ReactNode } from "react"; export interface NumericColumnProps extends GridColumnProps { precision: number; } export declare function NumericCellValue(props: GridCellValueProps): JSX.Element; export interface NumericEditorProps { row?: GridRowModel; column?: GridColumnModel; children?: ReactNode; } export declare function NumericCellEditor(props: NumericEditorProps): JSX.Element; export declare function NumericColumn(props: NumericColumnProps): JSX.Element;