import React from 'react';
export declare function Timer({ color, isStopped, unit, }: {
    readonly color?: string;
    readonly isStopped?: boolean;
    readonly unit: 'ms' | 's';
}): React.ReactNode;
