import type { AliasDefinition } from "./registry/types"; /** * Returns the bundled prompt content, keyed by install-relative path. * Loaded lazily from content/ files on first access. */ export declare function getBundledPrompts(): Record; /** * @deprecated Use getBundledPrompts() instead. Kept for backward compatibility. */ export declare const BUNDLED_PROMPTS: Record; export interface PromptInstallResult { changed: boolean; writtenFiles: string[]; } export declare function listBundledPrompts(): string[]; export declare function listBundledInteractivePromptCommands(): string[]; export declare function installPromptPack(promptPackDir: string): Promise; export declare function installInteractivePromptCommands(promptsDir: string): Promise; export declare function removePromptPack(promptPackDir: string): Promise; export declare function removeInteractivePromptCommands(promptsDir: string): Promise; export declare function listInstalledPrompts(promptPackDir: string): Promise; export declare function listInstalledInteractivePromptCommands(promptsDir: string): Promise; export declare function renderInteractivePrompt(alias: AliasDefinition, workflow: string): string;