/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; interface SelectPromptAppProps { readonly message?: string; readonly options: Array<{ label: string; value: string; }>; readonly onSelect: (value: string) => void; readonly onCancel: () => void; } export declare function SelectPromptApp({ message, options, onSelect, onCancel, }: SelectPromptAppProps): React.ReactElement; export {};