declare const LEVELS: readonly ["remind", "warn", "block"]; type ActionLevel = (typeof LEVELS)[number]; export interface GraduationResult { packName: string; previousLevel: ActionLevel; newLevel: ActionLevel; manifestPath: string; } export declare function promotePack(packName: string): GraduationResult; export declare function demotePack(packName: string): GraduationResult; export {};