import { RequestConfig } from '../../request'; type DaemonExplorerMetaResponse = { explorer?: { enabled?: boolean; url?: string; }; }; /** * Returns the daemon explorer metadata from the specified route. * The route's response should be a JSON object with a `explorer` property * that contains an `enabled` and `url` property. */ export declare function useDaemonExplorerMetadata({ route, config, disabled, }: { route?: string; config?: RequestConfig; disabled?: boolean; }): { isSupported: boolean; enabled: boolean; api: string | undefined; isValidating: boolean; isLoading: boolean; }; export {};