import { Prompt } from "@clack/core"; import type { SelectPrompt } from "@clack/core"; export type Option = { label: string; value: string; }; export type OptionWithDetails = Option & { details: string[]; }; export type SelectRefreshableOptions = ConstructorParameters< typeof SelectPrompt