import { ISpanDuration } from '../../core/ISpanDuration';
import { default as React } from 'react';
import { IRuntimeEvent } from '../../core/IRuntimeEvent';
export interface WodTimerProps {
    className?: string;
    /** Default primary time span */
    primary?: ISpanDuration;
    /** Default total time span */
    total?: ISpanDuration;
    /** Stream of events for updating clocks */
    events?: IRuntimeEvent[] | undefined;
    /** Child components to render (typically ClockAnchors) */
    children?: React.ReactNode;
}
export declare const WodTimer: React.FC<WodTimerProps>;
