import { type KeyboardEvent } from "react"; export interface UsePopperStatusProps { initialOpen?: boolean; autoClose?: boolean; } export declare function usePopperStatus(props: UsePopperStatusProps): { isOpen: boolean; onKeyDown: (event: KeyboardEvent) => void; onFocus: () => void; onBlur: () => void; onChange: () => void; onClick: () => void; };