export interface BuildOptions {
    /** Optional path to config file */
    config?: string | undefined;
    /** Used to resolve relative paths in the config. */
    root?: string | undefined;
    /** Current working directory */
    cwd?: string | undefined;
    /** Conditional build based upon the targets matching the `checksum.txt` file. */
    conditional?: boolean;
}
export declare function build(targets: string[] | undefined, options: BuildOptions): Promise<void>;
//# sourceMappingURL=build.d.ts.map