import { SvelteComponentTyped } from "svelte"; import type { SupportedAs } from "../../internal/elements"; declare class __sveltets_Render { props(): Omit, import("../../types").TInternalProps | "as" | "static" | "unmount"> & { as?: TAsProp | undefined; } & { /** Whether the element should ignore the internally managed open/closed state */ static?: boolean | undefined; /** Whether the element should be unmounted, instead of just hidden, based on the open/closed state */ unmount?: boolean | undefined; }; events(): {} & { [evt: string]: CustomEvent; }; slots(): { default: { open: boolean; }; }; } export declare type MenuItemsProps = ReturnType<__sveltets_Render['props']>; export declare type MenuItemsEvents = ReturnType<__sveltets_Render['events']>; export declare type MenuItemsSlots = ReturnType<__sveltets_Render['slots']>; export default class MenuItems extends SvelteComponentTyped, MenuItemsEvents, MenuItemsSlots> { } export {};