import { default as React } from 'react'; import { BoxProps, ChakraComponent } from '@chakra-ui/react'; export interface TooltipProps extends Omit { /** Value used to populate the tooltip content. */ content: string | number | React.ReactNode; /** Adds the `disabled` prop to the Tooltip when true. */ isDisabled?: boolean; /** Wraps the children of the tooltip in `ComponentWrapper` with `tabIndex=0` when true. */ shouldWrapChildren?: boolean; /** The placement of the tooltip relative to its children. */ placement?: "top" | "left" | "bottom" | "right" | "auto"; /** The main and cross-axis offset to displace the tooltip from its reference element. */ offset?: [number, number]; } export declare const Tooltip: ChakraComponent & React.RefAttributes>, React.PropsWithChildren>; export default Tooltip;