import { Argv } from 'yargs'; import { ContextOptions } from '../context/createContext'; import { makeAssets } from './makeAssets'; export interface BuildConfig { publicUrl: string; minify?: boolean; } export declare function build({ target, assetMask, srcDir, outDir, projectDir, }: ContextOptions & Parameters[0] & { target: string; }): Promise; export declare const buildCommand: { command: string; describe: string; handler: typeof build; builder: (y: Argv) => Argv; };