import { GameService } from '../../service/game.service';
import { SceneryClass } from '../scenery.class';
/**
 * The Grass Class
 */
export declare class GrassClass 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 Grass Images
     */
    private loadGrassImages;
}
