import { BuildAppWorkspaceService, GetApp, LoggerService, ProjectSdkParamsService } from "../../abstractions/index.js"; export declare class DefaultBuildAppWorkspaceService implements BuildAppWorkspaceService.Interface { private getApp; private loggerService; private projectSdkParamsService; constructor(getApp: GetApp.Interface, loggerService: LoggerService.Interface, projectSdkParamsService: ProjectSdkParamsService.Interface); execute(appName: GetApp.AppName, options?: BuildAppWorkspaceService.Options): Promise; } export declare const buildAppWorkspaceService: import("@webiny/di").Implementation;