import { DropdownMenu } from 'reka-ui/namespaced'; import type { DropdownMenuContentProps as RekaDropdownMenuContentProps } from 'reka-ui'; import type { AppConfig } from '@nuxt/schema'; import type theme from '#build/ui/dropdown-menu'; import type { DropdownMenuItem, DropdownMenuSlots } from '../types'; import type { ArrayOrNested, NestedItem, ComponentConfig } from '../types/utils'; type DropdownMenu = ComponentConfig; interface DropdownMenuContentProps> extends Omit { items?: T; portal?: boolean | string | HTMLElement; sub?: boolean; labelKey: keyof NestedItem; /** * @IconifyIcon */ checkedIcon?: string; /** * @IconifyIcon */ loadingIcon?: string; /** * @IconifyIcon */ externalIcon?: boolean | string; class?: any; ui: { [K in keyof Required]: (props?: Record) => string; }; uiOverride?: DropdownMenu['slots']; } type DropdownMenuContentSlots> = Omit, 'default'> & { default(props?: {}): any; }; declare const _default: >(__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal & Omit<{ readonly onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined; readonly onPointerDownOutside?: ((event: CustomEvent<{ originalEvent: PointerEvent; }>) => any) | undefined; readonly onFocusOutside?: ((event: CustomEvent<{ originalEvent: FocusEvent; }>) => any) | undefined; readonly onInteractOutside?: ((event: CustomEvent<{ originalEvent: PointerEvent; }> | CustomEvent<{ originalEvent: FocusEvent; }>) => any) | undefined; readonly onCloseAutoFocus?: ((event: Event) => any) | undefined; } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "onCloseAutoFocus"> & DropdownMenuContentProps & Partial<{}>> & import("vue").PublicProps; expose(exposed: import("vue").ShallowUnwrapRef<{}>): void; attrs: any; slots: DropdownMenuContentSlots; emit: ((evt: "escapeKeyDown", event: KeyboardEvent) => void) & ((evt: "pointerDownOutside", event: CustomEvent<{ originalEvent: PointerEvent; }>) => void) & ((evt: "focusOutside", event: CustomEvent<{ originalEvent: FocusEvent; }>) => void) & ((evt: "interactOutside", event: CustomEvent<{ originalEvent: PointerEvent; }> | CustomEvent<{ originalEvent: FocusEvent; }>) => void) & ((evt: "closeAutoFocus", event: Event) => void); }>) => import("vue").VNode & { __ctx?: Awaited; }; export default _default; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};