import '@oicl/openbridge-webcomponents/dist/navigation-instruments/badge-command/badge-command.js'; import type { CommandStatus } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/badge-command/badge-command.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; status?: CommandStatus; large?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcBadgeCommand: import("svelte").Component<$$ComponentProps, { CommandStatus: typeof CommandStatus; }, "">; type ObcBadgeCommand = ReturnType; export default ObcBadgeCommand;