import { type KeyboardEvent, type SyntheticEvent } from "react"; export declare const isToggleList: (event: KeyboardEvent) => boolean; export declare const usePopperStatus: (props: { initialOpen?: boolean; isMultiSelect?: boolean; onClose?: (event: SyntheticEvent) => void; }) => { isOpen: boolean; notifyPopper: (event: SyntheticEvent) => void; };