import { default as React } from 'react'; import { GraphiQLConfig } from './types/config'; interface GraphiQLExplorerProps { config: GraphiQLConfig; onEditQuery?: (query: string) => void; onFetchResult?: (result: string) => void; children?: React.ReactNode; } export declare const GraphiQLExplorer: React.FC; export default GraphiQLExplorer;