import { JsonInteractionHandler } from '@solid/community-server'; import { JsonInteractionHandlerInput } from '@solid/community-server'; import { KeyValueStorage } from '@solid/community-server'; import { WebIdStore } from '@solid/community-server'; import { JsonRepresentation } from '@solid/community-server'; import { GoogleStore } from 'css-google-auth'; import { HiuData } from './HIUProfileHandler'; type OutType = { output: string; }; export interface HIUAdminHandlerArgs { hiuStorage: KeyValueStorage; webIdStore: WebIdStore; googleStore: GoogleStore; adminWebIds: string[]; } export declare class HIUAdminHandler extends JsonInteractionHandler { private readonly hiuStorage; private readonly webIdStore; private readonly googleStore; private readonly adminWebIds; constructor(args: HIUAdminHandlerArgs); canHandle(input: JsonInteractionHandlerInput): Promise; handle(input: JsonInteractionHandlerInput): Promise>; } export {};