import * as React from 'react';
type Config = {
    hideByAnchorElement: boolean;
};
export declare const usePopoverState: (config?: Partial<Config>) => {
    open: boolean;
    handleClick: (event: React.MouseEvent<HTMLElement>) => void;
    handleClose: () => void;
    anchorEl: HTMLElement | null;
};
export {};
