/// /** * Loads the interactive terminal prompt library (`prompts`) on demand * * Note: [🐌] Loaded lazily to keep the startup of the `ptbk` CLI utility fast - most commands never ask the user * anything interactively * * @private internal utility of Promptbook CLI */ export declare const loadPromptsModule: () => Promise<{ default: typeof import("prompts"); inject: typeof import("prompts").inject; override: typeof import("prompts").override; prompt: any; prompts: typeof import("prompts").prompts; }>;