UNPKG

@hoosei/voxweave-react

Version:

A customizable and interactive voice UI component for React applications

13 lines (12 loc) 455 B
interface BlobAnimationProps { audioData: any | null; isListening: boolean; listeningColors?: [string, string]; notListeningColors?: [string, string]; agentStatus: 'idle' | 'speaking' | 'listening' | 'thinking'; agentAudioData: Uint8Array | null; } declare const BlobAnimationImpl: React.FC<BlobAnimationProps>; declare const BlobAnimation: React.FC<BlobAnimationProps>; export { BlobAnimationImpl }; export default BlobAnimation;