import { Manifest } from '../lib/definitions'; interface Answers { msgBroker?: string; msgPort?: number; appId: string; appInstance?: number; themeUrl?: string; developerEmail: string; developerName: string; developerCompany: string; } export declare const createBaseManifest: (answers: Answers) => Manifest; export {};