import type { OhPConfig } from "../types.js"; interface Preset extends Omit { } /** * Prompts the user to select a configuration preset via an interactive TUI menu. * Exits the process if the user cancels the selection. * @returns The {@link Preset} configuration object for the chosen preset. */ export declare function selectPreset(): Promise; export {};