import { VaMenu } from '../va-menu'; import { ExtractComponentPropTypes } from '../../../utils/component-options'; type OmitMenuProps = 'modelValue' | 'anchor' | 'cursor' | 'stateful' | 'preset'; /** This hook can be used without plugin used */ export declare const useMenu: () => { show: (props: Omit, OmitMenuProps> & { event: MouseEvent; }) => () => void; }; export {};