voicebot-react-native-expo
Version:
This is a voicebot-react-native package of Kipps AI voice bot for React Native Expo
18 lines • 596 B
TypeScript
import { TrackReferenceOrPlaceholder } from '@livekit/components-core';
interface TrackMutedIndicatorReturnType {
isMuted: boolean;
className: string;
}
/**
* The `useTrackMutedIndicator` hook is used to implement the `TrackMutedIndicator` component
* and returns the muted state of the given track.
*
* @example
* ```tsx
* const { isMuted } = useTrackMutedIndicator(trackRef);
* ```
* @public
*/
export declare function useTrackMutedIndicator(trackRef?: TrackReferenceOrPlaceholder): TrackMutedIndicatorReturnType;
export {};
//# sourceMappingURL=useTrackMutedIndicator.d.ts.map