import { FetchOptions } from './types'; /** * Fetches information from the given path using a GET request. * * @param path - The path to fetch information from. * @param options - Additional fetch options such as headers. * @returns The data fetched from the given path. * @throws {Error} If the response is not ok, throws an error with the response detail. */ export declare const getInfo: (path: string, options?: FetchOptions) => Promise;