import type { PaperSheetComposerAttachmentDraft, PaperSheetFeedbackThread, SheetRuntimeStatus } from './types.js'; type Props = { thread?: PaperSheetFeedbackThread | null; draft?: string; processing?: boolean; runtimeStatus?: SheetRuntimeStatus | null; thinkingText?: string | null; assistantDraftText?: string | null; showComposer?: boolean; showFollowUpButton?: boolean; resolvedFollowUpMode?: boolean; draftAttachments?: PaperSheetComposerAttachmentDraft[]; draftAttachmentError?: string | null; allowAttachments?: boolean; allowTakePhoto?: boolean; placeholder?: string; questionLabel?: string; onRequestFollowUp?: () => void; onAttachFiles?: (files: File[]) => void | Promise; onRemoveDraftAttachment?: (localId: string) => void; onDraftChange?: (value: string) => void; onReply?: (value?: string) => void; }; declare const SheetFeedbackThread: import("svelte").Component; type SheetFeedbackThread = ReturnType; export default SheetFeedbackThread;