import { GameService } from '../../service/game.service';
import { SceneryClass } from '../scenery.class';
/**
 * The Tree Class
 */
export declare class TreeClass extends SceneryClass {
    /**
     * 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 Tree Images
     */
    private loadTreeImages;
    /**
     * Draw everything necessary
     */
    protected draw(): void;
}
