export interface FacetFeature { $type?: string; uri?: string; did?: string; handle?: string; atURI?: string; /** `#footnote` — stable id shared by the inline reference and its entry. */ footnoteId?: string; /** `#footnote` — the footnote body as plaintext (for the reference tooltip). */ contentPlaintext?: string; } /** Extract the `#feature` suffix from any AT Proto facet `$type`. */ export declare function facetFeatureKind($type: string | undefined): string | null; export declare function hasFacetKind(features: Array, kind: string): boolean; export declare function findFacetFeature(features: Array, kind: string): FacetFeature | undefined; //# sourceMappingURL=facets.d.ts.map