import { HttpHandler } from '@solid/community-server'; import { HttpHandlerInput } from '@solid/community-server'; import { KeyValueStorage } from '@solid/community-server'; export type HiuData = { hiuId: string; accountId: string; googleId: string; }; export declare class HIUProfileHandler extends HttpHandler { private readonly baseUrl; private readonly hiuStorage; constructor(baseUrl: string, hiuStorage: KeyValueStorage); createHiuIdFromUrl(url: string): string; canHandle({ request }: HttpHandlerInput): Promise; handle({ request, response }: HttpHandlerInput): Promise; }