import { default as React } from 'react'; import * as PopoverPrimitive from '@radix-ui/react-popover'; export declare const rootClassName = "teddy-toggletip"; export declare const RootContext: React.Context<{ negative?: boolean; hideClose?: boolean; hideArrow?: boolean; }>; export type RootProps = Omit, 'open' | 'onOpenChange' | 'modal' | 'defaultOpen'> & { open?: PopoverPrimitive.PopoverProps['open']; onOpenChange?: PopoverPrimitive.PopoverProps['onOpenChange']; modal?: PopoverPrimitive.PopoverProps['modal']; defaultOpen?: PopoverPrimitive.PopoverProps['defaultOpen']; /** Hide the close button. You can use the `Close` component to add a custom close button. */ hideClose?: boolean; /** Hide the arrow. You can use the `Arrow` component to add a custom arrow. */ hideArrow?: boolean; /** Set the negative variant on the content. */ negative?: boolean; }; /** */ export declare function Root(props: RootProps): import("react/jsx-runtime").JSX.Element; export declare namespace Root { var displayName: string; }