import { PkgJson } from "./type"; export declare const isDefCloud: boolean; export declare type DefPublishType = 'assets' | 'tnpm' | 'webapp'; export declare type DefPublishEnv = 'daily' | 'prod'; export interface DefArgs { user: string; gitGroup: string; gitProject: string; gitBranch: string; gitCommitId: string; taskId: string; buildArgvStr: string; buildArgv: string[]; appId: string; iterationId: string; workEnv: string; publishType: DefPublishType | ''; version: string; publishEnv: DefPublishEnv; publishPages: string; prevStageBuildDist: string; } export declare const getDefArgs: () => DefArgs; export declare const isDefSite: () => boolean; export declare const isDefSiteDev: () => boolean; export declare const getDefCdnPrefix: () => string; export declare function logDefBuild(pkgJson?: PkgJson): Promise; //# sourceMappingURL=def.d.ts.map