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