import { CookieService } from 'ngx-cookie-service';
import { GameDataModel } from '../model/game-data.model';
import * as i0 from "@angular/core";
/**
 * The Cookie service
 */
export declare class GameCookieService {
    private cookieService;
    /**
     * The constructor
     * @param cookieService The cookieService from DI
     */
    constructor(cookieService: CookieService);
    /**
     * Get the cookie
     */
    private getCookie;
    /**
     * Get the High Score
     */
    getGameData(): GameDataModel;
    /**
     * Set the cookie
     */
    setGameData(data: GameDataModel): void;
    /**
     * Get the Debug information
     */
    getDebugData(): string;
    /**
     * Set the debug cookie data
     *
     * @param assetName The asset name
     */
    setDebugData(assetName: string): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<GameCookieService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<GameCookieService>;
}
