import * as React from 'react'; import { TooltipProps } from './TooltipTypes'; interface TooltipOverflowProps extends TooltipProps { input?: React.MutableRefObject; maxWidth?: string; width?: string; value?: string; } declare const TooltipOverflow: ({ label, children, input, withArrow, maxWidth, width, value, size, height, align, position, ...props }: TooltipOverflowProps) => React.JSX.Element; export default TooltipOverflow;