import { default as React } from 'react'; import { CardProps } from '../card'; export interface TooltipProps { /** * Content. */ children: React.ReactNode; /** * Additional class name. */ className?: string; /** * card props to pass down to card component. * By default padding=0.5 & borderless=true. * Its highly recommended to use same cardProps all over the application. */ cardProps?: CardProps; /** * Tooltips max width * @default medium */ maxWidth?: 'none' | 'small' | 'medium' | 'large'; } export declare const Tooltip: (props: TooltipProps) => JSX.Element | null; export default Tooltip;