interface Props { placeholder?: string; /** Show the textarea (default: true). When false, only the Run button is shown. */ showTextarea?: boolean; /** Show the Run button when textarea is hidden (default: true) */ showRunButton?: boolean; /** Message sent when Run is clicked with textarea hidden */ predefinedMessage?: string; onSendMessage?: (content: string) => void; onStopExecution?: () => void; } declare const ChatInput: import("svelte").Component; type ChatInput = ReturnType; export default ChatInput;