UNPKG

@multiface.js/react-native

Version:

React Native specific components and utilities for multimodal UI

13 lines (12 loc) 388 B
import React from 'react'; export interface RNVoiceInputProps { onTranscript: (transcript: string, confidence?: number) => void; onListeningChange?: (isListening: boolean) => void; language?: string; continuous?: boolean; wakeWord?: string; style?: any; buttonStyle?: any; textStyle?: any; } export declare const RNVoiceInput: React.FC<RNVoiceInputProps>;