interface CharacterInfo {
    name: string;
    image: string | null;
}
/**
 * Hook to fetch character information from Convai API
 *
 * @param characterId - The character ID to fetch information for
 * @param apiKey - The Convai API key
 * @returns Character information including name and image URL
 */
export declare const useCharacterInfo: (characterId: string, apiKey: string) => CharacterInfo & {
    isLoading: boolean;
    error: Error | null;
};
export {};
//# sourceMappingURL=useCharacterInfo.d.ts.map