export declare const is404: () => boolean; export declare const isFileNotFound: () => boolean; export declare const isHome: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isAGS: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGames: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesAll: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesMonthlyPicks: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesAwardWinners: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesSearch: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesLuckyDip: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesRecentPanelRatings: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesUnrated: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesNotVeryRated: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesYouRated: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGamesAdd: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGameDownload: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGameMirror: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGameStore: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGameVote: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGameAddComment: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGameEdit: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isGame: (url?: URL | HTMLAnchorElement | Location) => boolean; export declare const isCommunity: (url?: URL | HTMLAnchorElement | Location) => boolean; export interface GameInfo { owner: string; name: string; /** A games's subpage @example '/site/games/game/gameId/download/downloadId' -> 'download' @example '/site/games/game/gameId/mirror/mirrorId' -> 'mirror' @example '/site/games/game/gameId/' -> '' @example '/site/community/' -> undefined */ path: string; } export declare const utils: { getUsername: () => string | undefined; getCleanPathname: (url?: URL | HTMLAnchorElement | Location) => string; getGameInfo: (url?: URL | HTMLAnchorElement | string | Location) => GameInfo | undefined; };