import React from 'react'; import './BoundsEditor.less'; import { NumBounds } from '@orca-fe/deye-typings'; export interface BoundsEditorProps extends Omit, 'onChange' | 'defaultValue'> { defaultValue?: NumBounds; value?: NumBounds; onChange?: (value: NumBounds) => void; } declare const BoundsEditor: (props: BoundsEditorProps) => JSX.Element; export default BoundsEditor;