export declare function getBoardGameNameFromCache(boardGameId: string, locale: string): string | null; export declare function getBoardGameName(boardGameId: string, locale: string): Promise; export declare function clearBoardGameNameCache(): void; export declare function useGetBoardGameName(boardGameId: string, locale: string): { name: string | undefined; loading: boolean; error: Error | undefined; }; export declare function useGetBoardGameNameFn(): (boardGameId: string, locale: string) => Promise;