export {} declare global { type WaveformCaptureBase = { time: number name: string type: string svg: string notes?: string } type WaveformCapture = WaveformCaptureBase & { id: string } }