import { JsonInteractionHandler, type JsonInteractionHandlerInput, type JsonRepresentation, type ProviderFactory } from '@solid/community-server'; import { RememberedClientGrantStore } from './RememberedClientGrantStore'; /** Records successful CSS consent without replacing its grant or interaction handling. */ export declare class RememberedConsentHandler extends JsonInteractionHandler { private readonly providerFactory; private readonly source; private readonly store; constructor(providerFactory: ProviderFactory, source: JsonInteractionHandler, store: RememberedClientGrantStore); canHandle(input: JsonInteractionHandlerInput): Promise; handle(input: JsonInteractionHandlerInput): Promise; }