import '@oicl/openbridge-webcomponents/dist/components/command-menu/command-menu.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; /** Whether the menu is in the "in command" state. Controls the toggle and visual state. */ inCommand?: boolean; /** Whether to display the location slot. If false, the location is omitted from the menu. */ showLocation?: boolean; } export interface Events { onChange?: (event: CustomEvent<{ inCommand: boolean; }>) => void; } export interface Slots { commandIcon?: Snippet; commandStatus?: Snippet; commandDescription?: Snippet; commandLocation?: Snippet; toogleActionToInCommandLabel?: Snippet; toogleActionToNoCommandLabel?: Snippet; toogleStateInCommandLabel?: Snippet; toogleStateNoCommandLabel?: Snippet; toogleStateInCommandIcon?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcCommandMenu: import("svelte").Component<$$ComponentProps, {}, "">; type ObcCommandMenu = ReturnType; export default ObcCommandMenu;