export declare const buildStrategy: {
    readonly name: "components";
    readonly message: "Which components should be builded?";
    readonly choices: {
        name: string;
        value: string;
        checked: boolean;
    }[];
};
export declare function build(prod: boolean, all: boolean, stripRuntime: boolean, mode: string): Promise<void>;
