import { Options as YargsOption } from 'yargs'; import { Options } from '../../tools/webpack'; import { Options as CommonOptions } from './common'; export declare const command = "build"; export declare const desc = "compiles code and SCSS into deployable assets"; export declare const builder: { [key: string]: YargsOption; }; export interface Argv extends Options, CommonOptions { mode: 'development' | 'production' | 'staging' | 'test'; clientOnly?: boolean; debug?: boolean; serverOnly?: boolean; serviceWorkerOnly?: boolean; baselineOnly?: boolean; locale: string[]; scopeCaches?: boolean; buildIdentifier?: string; webpackCache?: boolean; } export declare function handler({ mode, baselineOnly, buildIdentifier, ...options }: Argv): Promise; //# sourceMappingURL=build.d.ts.map