import type { PaperSheetComposerAttachmentDraft, PaperSheetFeedbackTurn } from './types.js'; type $$ComponentProps = { 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; questionLabel: string; composerDisabled?: boolean; runtimeLocked?: boolean; onRequestFollowUp?: () => void; onAttachFiles?: (files: File[]) => void | Promise; onRemoveDraftAttachment?: (localId: string) => void; onDraftChange: (value: string) => void; onReply: (value?: string) => void; }; declare const PaperSheetFeedbackChat: import("svelte").Component<$$ComponentProps, {}, "">; type PaperSheetFeedbackChat = ReturnType; export default PaperSheetFeedbackChat;