export declare const OPEN_TUI_CANCEL: unique symbol; export type OpenTuiCancel = typeof OPEN_TUI_CANCEL; export type PromptResolver = (value: T | OpenTuiCancel) => void; export interface OpenTuiSelectOption { label: string; value: T; hint?: string; disabled?: boolean; } //# sourceMappingURL=open-tui-types.d.ts.map