import type { PaperSheetComposerAttachmentDraft, PaperSheetFeedbackTurn, PaperSheetQuestionReview } from './types.js'; type $$ComponentProps = { questionLabel: string; questionPrompt: string; answerSummary: string; review: PaperSheetQuestionReview; displayThread: PaperSheetFeedbackTurn[]; processing?: boolean; thinkingText?: string | null; assistantDraftText?: string | null; showAssistantDraft?: boolean; showComposer?: boolean; showFollowUpButton?: boolean; resolvedFollowUpMode?: boolean; draft: string; draftAttachments?: PaperSheetComposerAttachmentDraft[]; draftAttachmentError?: string | null; allowAttachments?: boolean; allowTakePhoto?: boolean; placeholder: string; composerDisabled?: boolean; runtimeLocked?: boolean; onClose: () => void; onRequestFollowUp?: () => void; onAttachFiles?: (files: File[]) => void | Promise; onRemoveDraftAttachment?: (localId: string) => void; onDraftChange: (value: string) => void; onReply: (value?: string) => void; }; declare const PaperSheetFeedbackResponseModal: import("svelte").Component<$$ComponentProps, {}, "">; type PaperSheetFeedbackResponseModal = ReturnType; export default PaperSheetFeedbackResponseModal;