import React from 'react';
import { GradientTheme } from './colors.js';
interface StopWatchProps {
    onActiveChange?: (isActive: boolean) => void;
    initialTheme?: GradientTheme;
}
declare const StopWatch: React.FC<StopWatchProps>;
export default StopWatch;
