import React from 'react'; import type { Answers } from 'inquirer'; import type { AnswerValue, ListPromptQuestion, PromptListChoices } from '../../../types.js'; export interface SelectProps extends ListPromptQuestion { id?: string; value?: AnswerValue; onChange: (name: string, value: AnswerValue) => void; dynamicChoices?: PromptListChoices; pending?: boolean; errorMessage?: string; answers?: Answers; } export declare const Select: (props: SelectProps) => React.JSX.Element; //# sourceMappingURL=Select.d.ts.map