import { type AudioProject } from '../../../utils/audioProject.js'; interface AudioEditorTemplateProps { value?: AudioProject; class?: string; onchange?: (project: AudioProject) => void; onexport?: (payload: { format: 'json'; document: AudioProject; }) => void; } declare const AudioEditorTemplate: import("svelte").Component; type AudioEditorTemplate = ReturnType; export default AudioEditorTemplate;