export declare const ApplicationType: { readonly Frontend: "Frontend"; readonly Backend: "Backend"; readonly FullStack: "FullStack"; }; export type ApplicationType = (typeof ApplicationType)[keyof typeof ApplicationType]; export declare function addBuildDocker(): Promise;