import { default as React } from 'react'; import { InteractiveProps } from '../Interactive/Interactive'; export type PopoverPosition = 'top-right' | 'top-left'; export interface PopoverProps extends Omit { at?: PopoverPosition; as?: React.ElementType; popover: React.ReactNode; children: (active: boolean) => React.ReactNode; ref?: React.Ref; active?: boolean; rootClassName?: string; popoverClassName?: string; } export declare function Popover(props: PopoverProps): import("react/jsx-runtime").JSX.Element;