UNPKG

@voxket-ai/voxket-live

Version:

A React widget for embedding Voxket-powered audio/video/chat experiences.

16 lines (15 loc) 562 B
import { ThemeType } from '../../styles'; interface SessionTimerProps { /** Timer duration in seconds */ duration: number; /** Theme for styling */ theme?: ThemeType; /** Callback when timer expires */ onTimerExpired?: () => void; /** Custom CSS classes */ className?: string; /** Whether to show the timer icon */ showIcon?: boolean; } export declare function SessionTimer({ duration, theme, onTimerExpired, className, showIcon }: SessionTimerProps): import("react/jsx-runtime").JSX.Element; export default SessionTimer;