import { SvelteComponent } from "svelte"; declare const __propDef: { props: { testId?: string | undefined; classes?: string | undefined; classesForDropdownButton?: string | undefined; dropdownLabel: string; options: { link: string; label: string; }[]; funcLabel: string; func: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type UserProfileMenuProps = typeof __propDef.props; export type UserProfileMenuEvents = typeof __propDef.events; export type UserProfileMenuSlots = typeof __propDef.slots; export default class UserProfileMenu extends SvelteComponent { } export {};