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