///
import { DialogOptions, DialogHTMLProps } from "../Dialog/Dialog";
import { PopoverStateReturn } from "./PopoverState";
export declare type PopoverOptions = DialogOptions & Pick, "unstable_popoverRef" | "unstable_popoverStyles">;
export declare type PopoverHTMLProps = DialogHTMLProps;
export declare type PopoverProps = PopoverOptions & PopoverHTMLProps;
export declare const usePopover: {
(options?: PopoverOptions | undefined, htmlProps?: import("..").RoleHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): import("..").RoleHTMLProps;
unstable_propsAreEqual: (prev: import("..").RoleOptions & Pick, "visible" | "baseId" | "animated" | "animating" | "stopAnimation"> & Pick, "hide" | "modal" | "unstable_disclosureRef"> & Pick & {
hideOnEsc?: boolean | undefined;
hideOnClickOutside?: boolean | undefined;
preventBodyScroll?: boolean | undefined;
unstable_initialFocusRef?: import("react").RefObject | undefined;
unstable_finalFocusRef?: import("react").RefObject | undefined;
unstable_orphan?: boolean | undefined;
unstable_autoFocusOnShow?: boolean | undefined;
unstable_autoFocusOnHide?: boolean | undefined;
} & Pick, "unstable_popoverRef" | "unstable_popoverStyles"> & import("react").HTMLAttributes & import("react").RefAttributes & {
wrapElement?: ((element: import("react").ReactNode) => import("react").ReactNode) | undefined;
}, next: import("..").RoleOptions & Pick, "visible" | "baseId" | "animated" | "animating" | "stopAnimation"> & Pick, "hide" | "modal" | "unstable_disclosureRef"> & Pick & {
hideOnEsc?: boolean | undefined;
hideOnClickOutside?: boolean | undefined;
preventBodyScroll?: boolean | undefined;
unstable_initialFocusRef?: import("react").RefObject | undefined;
unstable_finalFocusRef?: import("react").RefObject | undefined;
unstable_orphan?: boolean | undefined;
unstable_autoFocusOnShow?: boolean | undefined;
unstable_autoFocusOnHide?: boolean | undefined;
} & Pick, "unstable_popoverRef" | "unstable_popoverStyles"> & import("react").HTMLAttributes & import("react").RefAttributes & {
wrapElement?: ((element: import("react").ReactNode) => import("react").ReactNode) | undefined;
}) => boolean;
__keys: readonly any[];
__useOptions: (options: PopoverOptions, htmlProps: import("..").RoleHTMLProps) => PopoverOptions;
};
export declare const Popover: import("reakit-system/ts/createComponent").Component<"div", PopoverOptions>;