import * as React from 'react'; export interface MonacoToken { type: string | null; word: string | null; } export declare const QueryTextInput: React.FC<{ query: string; onQueryChange: (query: string) => void; }>; export declare const QueryMonacoEditorTextInput: React.FC<{ query: string; onQueryChange: (query: string) => void; executeQuery: () => void; setCursorToken?: (token: MonacoToken) => void; }>;