import { BlockFrostAPI } from '../../../index';
/**
 * Obtains backend version number.
 *
 * @returns Backend version in a format `{ url: string; version: string }`
 *
 */
export declare function root(this: BlockFrostAPI): Promise<{
    url: string;
    version: string;
}>;
