import type { Snippet } from 'svelte'; interface CommentComposerProps { value?: string; placeholder?: string; avatar?: string; name?: string; submitLabel?: string; cancelLabel?: string; showCancel?: boolean; loading?: boolean; disabled?: boolean; rows?: number; maxLength?: number; /** Show ⌘/Ctrl+Enter hint */ showShortcut?: boolean; class?: string; /** Extra actions left of the submit row (emoji, attach, …) */ toolbar?: Snippet; onsubmit?: (value: string) => void; oncancel?: () => void; } declare const CommentComposer: import("svelte").Component; type CommentComposer = ReturnType; export default CommentComposer;