export declare enum ProcessType { Deployment = "Deployment", Runbook = "Runbook" } declare type Alias = { noun: string; verb: string; plural: string; pastTense: string; preposition: string; }; declare type Process = { alias: Alias; manifest: "Release" | "Snapshot"; }; export declare const ProcessTypeAliasMap: Record; export {};