import '@oicl/openbridge-webcomponents/dist/components/audio-output/audio-output.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; /** The volume level to display, represented as the number of highlighted bars (0–8). Set to 0 for muted/no volume, up to 8 for maximum volume. */ volume?: number; /** If true, the component is visually muted and indicates a disabled or non-interactive state. Use to represent muted audio or when volume control is unavailable. */ disabled?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcAudioOutput: import("svelte").Component<$$ComponentProps, {}, "">; type ObcAudioOutput = ReturnType; export default ObcAudioOutput;