import React from 'react'; import type { Answers } from 'inquirer'; import type { PromptQuestion, ValidationResults, AnswerValue, PromptListChoices } from '../../types.js'; import './Question.scss'; export interface QuestionProps { id?: string; question: PromptQuestion; answers: Answers; onChange: (name: string, answer: AnswerValue) => void; choices?: PromptListChoices; pending?: boolean; validation: ValidationResults; isI18nInputSupported?: boolean; calloutCollisionTransformation?: boolean; } export declare const Question: (props: QuestionProps) => React.JSX.Element; //# sourceMappingURL=Question.d.ts.map