import { Room } from 'livekit-client'; import * as React from 'react'; /** @public */ export interface ConnectionStatusProps extends React.HTMLAttributes { /** * The room from which the connection status should be displayed. */ room?: Room; } /** * The `ConnectionState` component displays the connection status of the room as strings * (`"connected" | "connecting" | "disconnected" | "reconnecting"`). * * @example * ```tsx * * * * ``` * @public */ export declare const ConnectionState: (props: ConnectionStatusProps & React.RefAttributes) => React.ReactNode; //# sourceMappingURL=ConnectionState.d.ts.map