import { DisplayTemplate } from './displayTemplates.js'; /** Initializes the content type registry */ export declare function init(registry: DisplayTemplate[]): void; /** Get the DisplayTemplate from a template name */ export declare function getDisplayTemplate(name: string): DisplayTemplate | undefined; /** * Get the tag of a {@linkcode DisplayTemplate}. Returns undefined if * the DisplayTemplate doesn't exist or it doesn't have any tag * * @param key DisplayTemplate's key */ export declare function getDisplayTemplateTag(key?: string | null): string | undefined; /** Get all the DisplayTemplates */ export declare function getAllDisplayTemplates(): DisplayTemplate[]; /** Get the DisplayTemplate from a tag */ export declare function getDisplayTemplateByTag(tag: string): DisplayTemplate[];