import { AnimationCurveJson } from '@easytwin/runtime'; import * as React from 'react'; interface CurveEditorProps { value?: AnimationCurveJson; onChange?: (value: AnimationCurveJson) => void; } export declare function CurveEditor(props: CurveEditorProps): React.JSX.Element; export {};