import { EventEmitter } from '../../stencil-public-runtime'; export declare class BielInput { userInput: string; messageSent: EventEmitter<{ bielId: string; message: string; }>; scrollToBottom: EventEmitter<{ bielId: string; }>; thinkModeChanged: EventEmitter<{ bielId: string; mode: 'auto' | 'fast' | 'think'; }>; placeholderText: string; sendButtonText: string; isDisabled: boolean; bielId: string; project: string; mcpEnabled: boolean; mcpServerName: string; mcpMetadataTag: string; mcpServerUrl: string; apiKey: string; hideSettingsButton: boolean; hideConnectButton: boolean; currentThinkMode: 'auto' | 'fast' | 'think'; connectButtonText: string; thinkModeAutoText: string; thinkModeFastText: string; thinkModeThinkText: string; thinkModeAutoDescription: string; thinkModeFastDescription: string; thinkModeThinkDescription: string; mcpUrlText: string; mcpUrlDescription: string; mcpClaudeText: string; mcpClaudeDescription: string; mcpCopilotText: string; mcpCopilotDescription: string; mcpCursorText: string; mcpCursorDescription: string; mcpCopiedText: string; mcpUrlCopiedDescription: string; mcpClaudeCopiedDescription: string; el: HTMLElement; componentDidLoad(): void; handleInputChange(event: any): void; handleSendMessage(): void; handleKeyPress(event: any): void; getCSSVariable(element: HTMLElement, variableName: string): string; getPixelValue(element: HTMLElement, variableName: string): number; adjustTextareaHeight(): void; resetTextareaHeight(): void; componentDidUpdate(): void; render(): any; }