/** * Common state shared across Mapping Config */ export declare abstract class MappingConfig { readonly mentionHref: string | undefined; readonly displayName: string | undefined; constructor(mentionHref: string | undefined, displayName: string | undefined); }