export declare const GameName: {
    bl1: string;
    bl2: string;
    bl3: string;
    bl4: string;
    tps: string;
    gf: string;
    ttw: string;
    ntb: string;
};
export declare const PlatformName: {
    steam: string;
    xbox: string;
    psn: string;
    epic: string;
    nintendo: string;
};
export type IGameName = keyof typeof GameName;
export type IPlatformName = keyof typeof PlatformName;
export declare function isGameName(name: string | undefined): name is keyof typeof GameName;
export declare function isPlatformName(name: string | undefined): name is keyof typeof PlatformName;
