import type { Dispatch, SetStateAction } from 'react';
import type { ItemState } from '../../../core/types';
export declare function useMenuItemExpanded(item: ItemState): [boolean, Dispatch<SetStateAction<boolean>>];
