import "./Popover.css"; import { AriaLabelingProps, DomProps, InteractionStatesProps } from "../../shared"; import { ComponentProps, ElementType, ForwardedRef, ReactNode } from "react"; export interface InnerPopoverProps extends DomProps, AriaLabelingProps, InteractionStatesProps { /** * An HTML element type or a custom React element type to render as. */ as?: ElementType; /** * React children. */ children: ReactNode; /** * @ignore */ forwardedRef: ForwardedRef; } export declare function InnerPopover({ id, focus, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, as, children, forwardedRef, ...rest }: InnerPopoverProps): JSX.Element; export declare const Popover: import("../../shared").OrbitComponent; export declare type PopoverProps = ComponentProps;