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;
