import React, { ReactNode } from 'react'; import { CSS } from '../theme/stitches.config'; interface Props { children: ReactNode; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type PopoverContentProps = Props & NativeAttrs & { css?: CSS; }; export declare const PopoverContent: React.ForwardRefExoticComponent>; export {};