import { Dictionary, Manifest, ManifestParameter } from '../types'; export declare const getManifestAppName: (appPath: string) => string | undefined; export declare const uploadAppPkg: (pkgPath: string) => Promise; export declare const promptAndGetSettings: (params: ManifestParameter[], appName?: string, valuesRequired?: boolean) => Promise>; export declare const deployApp: (method: string, url: string, upload_id: number, appName?: string) => Promise>; export declare const createProductInstallation: (settings: any, manifest: Manifest, app_id: string, product: string) => Promise;