import { Orientation } from './utils'; import { PrimitiveProps } from '../Primitive'; export type NavigationMenuSubEmits = { /** Event handler called when the value changes. */ 'update:modelValue': [value: string]; }; export interface NavigationMenuSubProps extends PrimitiveProps { /** The controlled value of the sub menu item to activate. Can be used as `v-model`. */ modelValue?: string; /** * The value of the menu item that should be active when initially rendered. * * Use when you do not need to control the value state. */ defaultValue?: string; /** The orientation of the menu. */ orientation?: Orientation; } declare const _default: __VLS_WithTemplateSlots, { orientation: string; }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string) => void; }, string, import('vue').PublicProps, Readonly, { orientation: string; }>>> & { "onUpdate:modelValue"?: ((value: string) => any) | undefined; }, { orientation: Orientation; }, {}>, Readonly<{ default: (props: { /** Current input values */ modelValue: string; }) => any; }> & { default: (props: { /** Current input values */ modelValue: string; }) => any; }>; export default _default; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_PrettifyLocal : P[K]; }; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};