/** * This function is used for add all dependencies in the package.json app to the bundled dependencies property * and then running npm pack to create a tarball for deploying to the connect platform. */ export declare function packageApp(cwd?: string): Promise; export declare class AppFailedToPackageError extends Error { code: string; constructor(message: string); } export declare function isAppFailedToPackageError(obj: unknown): obj is AppFailedToPackageError;