import * as React from 'react'; import { Icon } from '../icon/Icon'; export declare const StyledHandle: React.ForwardRefExoticComponent, HTMLButtonElement>, "appearance" | "size" | "theme" | "isRounded"> & { theme?: ("primary" | "white" | "neutral" | "primaryDark" | "success" | "warning" | "danger" | Partial>) | undefined; appearance?: ("simple" | "outline" | "solid" | Partial>) | undefined; size?: ("sm" | "md" | "lg" | "xs" | Partial>) | undefined; isRounded?: (boolean | Partial>) | undefined; } & { as?: React.ElementType; }, "children" | "label" | "hasTooltip" | "tooltipSide" | keyof import("../..").NavigatorActions> & { children: React.ReactNode; label: string; } & Omit & import("../..").NavigatorActions, "ref"> & React.RefAttributes, "isDragging"> & { isDragging?: boolean | undefined; } & { as?: React.ElementType; }>; export type THandleProps = Omit, 'children'> & Pick, 'size'>; export declare const Handle: React.ForwardRefExoticComponent & React.RefAttributes>;