import { GameService } from '../../service/game.service';
import { AlienClass } from '../alien/alien.class';
/**
 * The Alien 1 Class
 */
export declare class Alien1Class extends AlienClass {
    /**
     * Constructor
     * @param gameService The GameService
     * @param ctx The ctx
     * @param guid The guid of the alien
     * @param spawnLocation The guid of the alien
     */
    constructor(gameService: GameService, ctx: CanvasRenderingContext2D, guid: number);
    /**
     * Load the alien Images
     */
    private loadAlienImages;
}
