import React from 'react'; import { Animation } from './utils'; export declare type TooltipContextProps = { showArrow?: boolean; animation?: Animation; outsideCloseable?: boolean; }; export declare const defaultValue: TooltipContextProps; export declare const TooltipContext: React.Context; export declare const useTooltip: () => TooltipContextProps;