interface Props { onCreateSession: () => void; onSelectSession: (id: string) => void; onDeleteSession: (id: string) => void; onSessionNavigate?: (id: string) => void; onSendMessage: (content: string) => void; onStopExecution: () => void; onTogglePanel?: () => void; isPipelinePanelOpen?: boolean; onRefresh: () => void; isRefreshing?: boolean; showChatInput?: boolean; showRunButton?: boolean; predefinedMessage?: string; placeholder?: string; style?: string; } declare const ControlPanel: import("svelte").Component; type ControlPanel = ReturnType; export default ControlPanel;