/// /** * A tooltip is a brief, informative message that appears when a user interacts with an element. Tooltips are usually initiated in one of two ways: through a mouse-hover gesture or through a keyboard-hover gesture. * The Tooltip component follows the WAI-ARIA Tooltip Pattern. * If the children of Tooltip is a string, we wrap with in a span with tabIndex set to 0, to ensure it meets the accessibility requirements. * * See full docs: https://chakra-ui.com/docs/overlay/tooltip */ export declare function Tooltip({ ...props }: any): JSX.Element; //# sourceMappingURL=Tooltip.d.ts.map