wix-style-react
Version:
wix-style-react
15 lines • 404 B
TypeScript
export function usePopoverState({ scrollAreaRef, disabled, isMenuOpen, ...rest }: {
[x: string]: any;
scrollAreaRef: any;
disabled: any;
isMenuOpen: any;
}): {
moveBy: {
y: number;
};
popoverContentRef: import("react").MutableRefObject<null>;
isPopoverOpen: boolean;
onOpen: () => void;
onClose: () => void;
};
//# sourceMappingURL=usePopoverState.d.ts.map