import type { PickerColumnItem, PickerValue } from '../picker-view'; import type { PickerProps } from './Picker'; export interface PickerPromptValue { value: PickerValue[]; items: PickerColumnItem[]; } export declare const prompt: (props: Omit) => Promise;