import React from 'react'; import { ReactMouseEvent } from '../type'; import { UseDisclosureProps } from './chakra-hooks/use-disclosure'; export declare const useDisclosure: (props?: UseDisclosureProps & { anchorElRef?: React.RefObject | undefined; }) => { anchorEl: HTMLElement | null; onOpen: (event: ReactMouseEvent) => void; onClose: () => void; onToggle: (event?: ReactMouseEvent | undefined) => void; isOpen: boolean; isControlled: boolean; getButtonProps: (props?: any) => any; getDisclosureProps: (props?: any) => any; };