import '@oicl/openbridge-webcomponents/dist/components/command-button/command-button.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; /** Whether the command is currently active. When `true`, the button displays the "in command" icon and uses active styling. When `false`, the button displays the "no command" icon and uses default styling. Default: `false` */ inCommand?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcCommandButton: import("svelte").Component<$$ComponentProps, {}, "">; type ObcCommandButton = ReturnType; export default ObcCommandButton;