/** * Provides the basic APIs related to target map */ declare class TargetMap { /** * Returns the view container name associated with action * @param action name of the action */ static actionsTargetMap: Map; static getTargetViewContainerName: (action: any) => string; /** * builds the action target map by using the action target model * @param actionTargetModel is action target model */ static buildActionTargetMap: (actionTargetModel?: { [key: string]: any; }) => void; } export default TargetMap;