import { BlueprintConfig } from "../ldaccess/ldBlueprint"; import { KVL } from "../ldaccess/KVL"; /** * adds a blueprint defined in the editor to the AppItptRetriever, automatically looks * for the correct React-Class to extend * @param input the BlueprintConfig used as a setup for the new Itpt */ export declare const addBlueprintToRetriever: (input: BlueprintConfig, retrieverName?: string) => void; export declare const intrprtrTypeInstanceFromBlueprint: (input: BlueprintConfig) => any; export declare const changeMainAppItpt: (toItptName: string, startingInstance?: KVL[]) => void;