import React, { Component } from 'react'; import { OtherProps } from '../types'; import { HandlesProps } from './types'; export declare class Handles extends Component { autofocus: (e: React.MouseEvent) => void; getHandleProps: (id: string, props?: OtherProps) => { onKeyDown: (e: React.KeyboardEvent) => void; onMouseDown: (e: React.MouseEvent) => void; onTouchStart: (e: React.TouchEvent) => void; }; render(): string | number | boolean | React.ReactElement> | React.ReactFragment | React.ReactPortal | null | undefined; }