import type { VastChain, VastChainDetails } from '../types'; /** * Returns a summary of the passed {@link VastChain}. * * @param vastChain the {@link VastChain} from which we want the details. * @returns Returns a {@link VastChainDetails} object from the passed {@link VastChain}. */ export declare const getDetails: (vastChain: VastChain) => VastChainDetails;