///
import { DialogBackdropOptions, DialogBackdropHTMLProps } from "../Dialog/DialogBackdrop";
export declare type PopoverBackdropOptions = DialogBackdropOptions;
export declare type PopoverBackdropHTMLProps = DialogBackdropHTMLProps;
export declare type PopoverBackdropProps = PopoverBackdropOptions & PopoverBackdropHTMLProps;
export declare const usePopoverBackdrop: {
(options?: DialogBackdropOptions | undefined, htmlProps?: import("..").RoleHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): import("..").RoleHTMLProps;
unstable_propsAreEqual: (prev: import("..").RoleOptions & Pick, "visible" | "baseId" | "animated" | "animating" | "stopAnimation"> & Pick, "modal"> & 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, "modal"> & import("react").HTMLAttributes & import("react").RefAttributes & {
wrapElement?: ((element: import("react").ReactNode) => import("react").ReactNode) | undefined;
}) => boolean;
__keys: readonly any[];
__useOptions: (options: DialogBackdropOptions, htmlProps: import("..").RoleHTMLProps) => DialogBackdropOptions;
};
export declare const PopoverBackdrop: import("reakit-system/ts/createComponent").Component<"div", DialogBackdropOptions>;