import { GameService } from '../../service/game.service';
import { LevelClass } from '../level.class';
/**
 * The Bridge Class
 */
export declare class BridgeClass extends LevelClass {
    /**
     * Constructor
     * @param gameService The GameService
     * @param ctx The ctx
     * @param guid The guid of the alien
     */
    constructor(gameService: GameService, ctx: CanvasRenderingContext2D, guid: number);
    /**
     * Load the Bridge Images
     */
    private loadBridgeImages;
}
