import React from 'react'; import { StoreType } from '../model/store'; import { ShapeType } from '../model/shape-model'; export declare const NumberInput: ({ value, onValueChange, ...props }: { [x: string]: any; value: any; onValueChange: any; }) => React.JSX.Element; export declare const AnimationsPickerOld: (({ element, store, elements, }: { elements?: Array; element?: ShapeType; store: StoreType; }) => React.JSX.Element) & { displayName: string; }; export declare const AnimationsPicker: React.FunctionComponent; export default AnimationsPicker;