import React from 'react';
interface Props {
    disabled: boolean;
    handle: string;
    min: number;
    max: number;
    setDragging: (value: string) => void;
    setFocus: (value: string) => void;
    value: number;
}
export declare const Handle: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
export {};
