import type { SurveyQuestion } from "./types"; interface QuestionItemProps { question: SurveyQuestion; index: number; onUpdate: (questionId: string, updates: Partial) => void; onDelete: (questionId: string) => void; onDuplicate: (questionId: string) => void; onSelect?: () => void; readOnly: boolean; } export declare function QuestionItem({ question, index, onUpdate, onDelete, onDuplicate, onSelect: _onSelect, readOnly, }: QuestionItemProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=question-item.d.ts.map