import { AppStoreCache } from './cache';
interface InstalledModuleLike {
    packageName?: string;
    name?: string;
    version?: string;
    id?: string;
}
interface AppLike {
    plugins?: InstalledModuleLike[];
    webapps?: InstalledModuleLike[];
    addons?: InstalledModuleLike[];
    embeddablewebapps?: InstalledModuleLike[];
}
export declare function buildOfflineResponse(app: AppLike, cache: AppStoreCache): Record<string, unknown>;
export {};
//# sourceMappingURL=offline.d.ts.map