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 {};
