@hoosei/voxweave-react
Version:
A customizable and interactive voice UI component for React applications
14 lines (13 loc) • 525 B
TypeScript
interface VoxweaveMinimalProps {
isListening: boolean;
onStartCall: () => void;
onClose: () => void;
audioData: Uint8Array | null;
agentAudioData: Uint8Array | null;
agentStatus: string;
darkMode: boolean;
startCallLabel: string;
endCallLabel: string;
}
export declare function VoxweaveMinimal({ isListening, onStartCall, onClose, audioData, agentAudioData, agentStatus, darkMode, startCallLabel, endCallLabel, }: VoxweaveMinimalProps): import("react/jsx-runtime").JSX.Element;
export {};