import { type AuxiliaryStrategy, type Representation, type ResourceIdentifier } from '@solid/community-server'; export interface LocalFirstRdfRepresentationResolverOptions { accessor: unknown; metadataStrategy: Pick; } export interface LocalFirstRdfRepresentationResolverLike { resolve(identifier: ResourceIdentifier): Promise; } /** * Resolves user-facing RDF GETs from the local `.ttl` / `.jsonld` file mirror. * * DataAccessor.getData() keeps CSS' internal `internal/quads` contract; this * resolver is the explicit SolidFS content path for local-first HTTP reads. */ export declare class LocalFirstRdfRepresentationResolver implements LocalFirstRdfRepresentationResolverLike { private readonly accessor; private readonly metadataStrategy; constructor(options: LocalFirstRdfRepresentationResolverOptions); resolve(identifier: ResourceIdentifier): Promise; private isLocalRdfReadable; }