import { TimerSystem } from "./TimerSystem";
/**
 * A timer system implementation using milliseconds as the time unit.
 */
export declare class MillisecondsTimerSystem extends TimerSystem {
    constructor();
}
