import { CellEditorNumberFormatProps } from './types'; import { EditingCellInfo, ObjectForExtending } from '../types'; import { ContentFormat } from '../TableGlideInstance/type'; import { default as React } from 'react'; export declare const CellEditorNumberFormat: React.ForwardRefExoticComponent & React.RefAttributes>; export declare function CellEditorNumberFormatInternal({ row, column, onRowChange, readOnly, cellWidth, cellHeight, initialValue, formatOptions, disableLeftOffset, }: EditingCellInfo & { formatOptions: ContentFormat | undefined; disableLeftOffset: boolean | undefined; }): import("react/jsx-runtime").JSX.Element;