import React from 'react';
type PomodoroProps = {
    onActiveChange: (isActive: boolean) => void;
};
export declare function Pomodoro({ onActiveChange }: PomodoroProps): React.JSX.Element;
export {};
