voicebot-react-native-expo
Version:
This is a voicebot-react-native package of Kipps AI voice bot for React Native Expo
18 lines (17 loc) • 565 B
TypeScript
import * as React from 'react';
import { type ViewStyle } from 'react-native';
import { type VideoTrack } from 'livekit-client';
/**
* @deprecated use `VideoTrack` and `VideoTrackProps` instead.
*/
export type Props = {
videoTrack?: VideoTrack | undefined;
style?: ViewStyle;
objectFit?: 'cover' | 'contain' | undefined;
mirror?: boolean;
zOrder?: number;
};
/**
* @deprecated use `VideoTrack` and `VideoTrackProps` instead.
*/
export declare const VideoView: ({ style, videoTrack, objectFit, zOrder, mirror, }: Props) => React.JSX.Element;