import { GuidValue } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models";
import { EnterpriseGlossaryInformationSourceSettings } from "./EnterpriseGlossaryInformationSourceSettings";
export declare abstract class EnterpriseGlossaryInformationProvider {
    readonly providerInformationSourceSettings: EnterpriseGlossaryInformationSourceSettings;
    constructor(providerInformationSourceSettings: EnterpriseGlossaryInformationSourceSettings);
    abstract readonly title: string;
    readonly providerInformationSettingsManifestId?: GuidValue;
}
