import { IAdapterManifestEntry } from "./adapter/types";
export interface IAPIResponse {
    browser: Record<string, any>;
    node: Record<string, any>;
    ssr: Record<string, any>;
}
export declare const getLatestAPIs: () => Promise<IAPIResponse>;
export declare const getLatestAdapters: () => Promise<Array<IAdapterManifestEntry>>;
