import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "div"; export interface InnerTooltipProps extends InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; } export declare function InnerTooltip({ as, children, forwardedRef, ...rest }: InnerTooltipProps): JSX.Element; export declare namespace InnerTooltip { var defaultElement: string; } /** * A tooltip is a popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it. * * [Documentation](https://orbit.sharegate.design/?path=/docs/tooltip--default-story) */ export declare const Tooltip: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type TooltipProps = ComponentProps; export {};