UNPKG

livekit-voice-assistant

Version:

A customizable voice assistant component built with LiveKit

11 lines (10 loc) 389 B
import type { AgentState } from "@livekit/components-react"; import React from "react"; interface NoAgentNotificationProps extends React.PropsWithChildren<object> { state: AgentState; } /** * Renders some user info when no agent connects to the room after a certain time. */ export declare function NoAgentNotification(props: NoAgentNotificationProps): React.JSX.Element; export {};