@qwanyx/stack 0.2.30 → 0.2.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ /**
2
+ * AudioEditor Component
3
+ * Tape recorder style audio editor with recording, playback, and editing
4
+ */
5
+ export interface AudioEditorProps {
6
+ /** Called when recording is complete with audio blob and duration */
7
+ onComplete: (audioBlob: Blob, duration: number) => void;
8
+ /** Called when user cancels */
9
+ onCancel?: () => void;
10
+ /** Called to transcribe the audio */
11
+ onTranscribe?: (audioBlob: Blob) => void;
12
+ /** Whether transcription is in progress */
13
+ transcribing?: boolean;
14
+ }
15
+ export declare function AudioEditor({ onComplete, onCancel: _onCancel, onTranscribe, transcribing }: AudioEditorProps): import("react/jsx-runtime").JSX.Element;