interface ThreadReplyProps { author: string; body: string; avatar?: string; time?: string; depth?: number; class?: string; onreply?: () => void; } declare const ThreadReply: import("svelte").Component; type ThreadReply = ReturnType; export default ThreadReply;