import type { CommonDescription } from './CommonDescription'; import type { CommonName } from './CommonName'; import type { CommonUserName } from './CommonUserName'; export declare type APISummary = { name?: CommonName; description?: CommonDescription; source?: APISummary.source; createdBy?: CommonUserName; }; export declare namespace APISummary { enum source { EVENT_APIPRODUCT = "EventAPIProduct", UPLOAD = "Upload", EVENT_PORTAL_LINK = "EventPortalLink" } }