import { ActionUpdate } from '../../types/action-update'; interface PromptUpdateSelectionOptions { /** * Whether to show the Age column. */ showAge?: boolean; } export declare function promptUpdateSelection(updates: ActionUpdate[], options?: PromptUpdateSelectionOptions): Promise; export {};