import type { CSS } from "../theme/stitches.config"; import React, { ReactNode } from "react"; import { PopoverContentVariantsProps } from "./popover.styles"; interface Props { children: ReactNode; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type PopoverContentProps = Props & NativeAttrs & PopoverContentVariantsProps & { css?: CSS; }; declare type PopoverContentComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const _default: PopoverContentComponent; export default _default;