import { DefaultItptRetriever } from "../defaults/DefaultItptRetriever"; export declare class ReduxItptRetriever extends DefaultItptRetriever { private connectedItpts; constructor(name?: string); searchForObjItpt(term: string | string[], crudSkills: string): any; searchForObjItptAndDerive(term: string | string[], crudSkills: string, newLDTokenStr: string): any; searchForKVItpt(term: string, crudSkills: string): void; addItpt(typeName: string, intrprtr: any, crudSkills: string, tags: string[]): void; setDerivedItpt(ldTokenVal: string, itpt: any): void; getDerivedItpt(ldTokenVal: string): any; getItptByNameSelf(nameSelf: string): any; getItptList(): Array; /** * gets itpt that is not connected to Redux * @param nameSelf the nameSelf-property in the BlueprintConfig of the itpt */ getUnconnectedByNameSelf(nameSelf: string): any; hasConnectedByNameSelf(nameSelf: string): boolean; }