import * as React from 'react'; import { RqlQueryResult } from './useQuery'; import { MonacoToken } from './QueryInput'; export declare const RqlBrowserQuerier: React.FC<{ query: string; setQuery: (input: string) => void; resultsAndVariables: { results: RqlQueryResult | null; variables: string[] | null; }; executeQuery: () => void; queryIsLoading: boolean; setCursorToken: (token: MonacoToken) => void; isForbiddenQuery: boolean; }>; export declare const RqlBrowserControlPanel: React.FC<{ showMetamodel: boolean; setMetamodel: (b: boolean) => void; autoHelp: boolean; setAutoHelp: (b: boolean) => void; setEntityTypeTextSearch: (str: string) => void; setLinkedEntityTypeTextSearch: (str: string) => void; setRelationsAndAttributesTextSearch: (str: string) => void; }>; export declare const RqlBrowserError: React.FC;