/**
 * @author yandeu
 * @description Ported to TypeScript
 */
/**
 * @author alteredq / http://alteredqualia.com/
 */
/**
 * This is the Clock class THREE provides.
 */
declare class Clock {
    autoStart: boolean;
    startTime: number;
    oldTime: number;
    elapsedTime: number;
    running: boolean;
    constructor(autoStart?: boolean);
    start(): void;
    stop(): void;
    getElapsedTime(): number;
    getDelta(): number;
}
export { Clock };
//# sourceMappingURL=Clock.d.ts.map