import { ComputedRef } from 'vue'; export declare const useState: () => { control: ComputedRef<{ shiftKeyInMenu: boolean; menuFocused: boolean; }>; setMenuFocused: (value: boolean) => void; setShiftKey: (value: boolean) => void; };