import type { MixerChannelState } from '../../../utils/audioProject.js'; interface MixerChannelProps { channel: MixerChannelState; name?: string; color?: string; class?: string; onchange?: (channel: MixerChannelState) => void; } declare const MixerChannel: import("svelte").Component; type MixerChannel = ReturnType; export default MixerChannel;