export declare type APIImport = { /** * source system for loading the Async API */ source?: APIImport.source; /** * id of the entity in the source system */ id?: string; /** * indicates if an existing API entity shall be replaced */ overwrite: boolean; }; export declare namespace APIImport { /** * source system for loading the Async API */ enum source { EVENT_APIPRODUCT = "EventAPIProduct" } }