import * as React from 'react' export interface TooltipProps { children?: React.ReactNode size?: 'small' | 'medium' | 'large' placement?: 'top' | 'left' | 'right' | 'bottom' style?: { border?: string padding?: string boxShadow?: string } // phasing in a new style override prop to avoid using native react prop customStyle?: { border?: string padding?: string boxShadow?: string backgroundColor?: string } overlayStyle?: React.CSSProperties arrowStyle?: { border?: string boxShadowRight?: string boxShadowBottom?: string boxShadowLeft?: string boxShadowTop?: string } target: React.ReactNode snacksStyle: 'primary' | 'secondary' | 'dark' onDismiss(): void onShow(): void isVisible?: boolean delayCalculatePosition?: boolean } declare const Tooltip: React.ComponentClass export default Tooltip