import { Target } from '../../types/main';
import Analyzer from '../Analyzer';
export declare const WAIT_OPCODE = "control_wait";
export declare const STOP_OPCODE = "control_stop";
export declare const WAIT_UNTIL_OPCODE = "control_wait_until";
declare class Synchronisation extends Analyzer {
    score: number;
    targets: Target[];
    constructor(targets: Target[]);
    execute(): number;
    private firstPointWait;
    private twoPointsStop;
    private threePointsWaitUntil;
}
export default Synchronisation;
