import type { Snippet } from 'svelte'; interface PromptInputProps { value?: string; placeholder?: string; disabled?: boolean; loading?: boolean; submitLabel?: string; maxRows?: number; /** Suggested prompts shown above the input */ suggestions?: string[]; class?: string; leading?: Snippet; trailing?: Snippet; onsubmit?: (value: string) => void; onstop?: () => void; } declare const PromptInput: import("svelte").Component; type PromptInput = ReturnType; export default PromptInput;