export declare class SchemaMockGenerator {
    private workItemTypes;
    private workItemLinkTypes;
    private linkCategories;
    getLinkCategories(): any;
    getWorkItemLinkTypes(): any;
    getWorkItemTypes(): any[];
    getWorkItemTypeById(id: any): any;
    renderText(text: string): {
        attributes: {
            renderedContent: string;
        };
        id: string;
        type: string;
    };
}
