Available prompt types in `inquire`
mainThe library provides several interactive prompt types for CLI applications:
Text: Text input with built-in autocompletion.Editor*: Long text input via an external text editor (requiresdatefeature flag).DateSelect*: Date input via an interactive calendar (requiresdatefeature flag).Select: Single option selection from a list.MultiSelect: Multiple option selection from a list.Confirm: Simple yes/no confirmation.CustomType: Text input parsed into a custom type (e.g., numbers, UUIDs).Password: Secretive text input for sensitive data.