import { RotationControls } from "../core/RotationControls.js";
import { Strategy } from "./Strategy.js";
/**
 * A rotation strategy.
 *
 * @group Strategies
 */
export declare class RotationStrategy implements Strategy {
    /**
     * The controls.
     */
    private readonly controls;
    /**
     * Constructs a new rotation strategy.
     *
     * @param controls - The controls.
     */
    constructor(controls: RotationControls);
    execute(flag: boolean, event: Event): void;
}
