import React from 'react'; interface IProps { className?: string; defaultStep?: number; onCommand?: (params: any) => void; onMouseDown?: (position: string, e: React.MouseEvent) => void; onMouseUp?: (position: string, e: React.MouseEvent) => void; onClick?: (position: string, e: any) => void; addPreset?: (values: any) => Promise; onClose?: () => void; } declare const _default: import("react").MemoExoticComponent<(props: IProps) => JSX.Element>; export default _default;