/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /// type TypeFilterValue = { name: string; operator: string; type: string; value: string | null; filterEditorProps?: any; }; type NumberEditorProps = { filterValue?: TypeFilterValue; filterDelay?: number; onChange?: Function; readOnly?: boolean; disabled?: boolean; theme?: string; i18n?: (key?: string, defaultLabel?: string) => void; filterEditorProps?: any; render?: Function; autoFocus?: boolean; value?: string; cellProps?: any; onComplete?: Function; onCancel?: Function; onTabNavigation?: Function; editorProps?: any; }; declare const NumericEditor: (props: NumberEditorProps) => JSX.Element; export default NumericEditor;