/** * Determines which template is being used in the current project */ export declare function detectTemplate(): Promise; /** * Generate AI upgrade prompts based on project template */ export declare function generateAiUpgradePrompts(template: string | null): string[]; /** * For backward compatibility with older Node versions */ export declare function safeFetch(url: string): Promise; /** * Prompts the user for confirmation with a yes/no question * @param message The message to display in the prompt * @param defaultValue Default answer (true=yes, false=no) * @returns Promise True if user confirmed, false otherwise */ export declare function confirmAction(message: string, defaultValue?: boolean): Promise; export declare function migrateComponentsDuringUpgrade(componentNames: string[], installPath: string): Promise; //# sourceMappingURL=utils.d.ts.map