import { FC } from 'react'; export declare const setGlobalOnFetchResult: (callback?: ((result: any) => void) | undefined) => void; interface ExplorerPageProps { onEditQuery?: (query: string) => void; onFetchResult?: (result: any) => void; } declare const ExplorerPage: FC; export default ExplorerPage;