import * as react from 'react'; import { ComponentProps, ReactNode } from 'react'; import * as react_jsx_runtime from 'react/jsx-runtime'; import * as PopoverPrimitive from '@radix-ui/react-popover'; import { CSS } from './lib/stitches.config.js'; declare type PopoverProps = ComponentProps & { children: ReactNode; }; declare function Popover({ children, ...props }: PopoverProps): react_jsx_runtime.JSX.Element; declare type PopoverContentPrimitiveProps = ComponentProps; declare type PopoverContentProps = PopoverContentPrimitiveProps & { css?: CSS; hideArrow?: boolean; }; declare const PopoverContent: react.ForwardRefExoticComponent & react.RefAttributes>; declare const PopoverTrigger: react.ForwardRefExoticComponent>; export { Popover as P, PopoverContent as a, PopoverTrigger as b };