export interface BoardGameCredits { authors: string[]; illustrators: string[]; graphics: string[]; musicians: string[]; publishers: string[]; developers: string[]; } export declare function getBoardGameCreditsFromCache(boardGameId: string): BoardGameCredits | null; export declare function getBoardGameCredits(boardGameId: string): Promise; export declare function clearBoardGameCreditsCache(): void; export declare function useGetBoardGameCredits(boardGameId: string): { credits: BoardGameCredits | undefined; loading: boolean; error: Error | undefined; }; export declare function useGetBoardGameCreditsFn(): (boardGameId: string) => Promise;