/** * Copyright (c) 2019, salesforce.com, inc. * All rights reserved. * SPDX-License-Identifier: MIT * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT */ import 'colors'; import { RuntimeCompilerOptions, RuntimeCompilerOutput } from './interfaces'; /** * Create a client-side bundle based on the given config. * * @param options - Compiler config (see README for object documentation) */ export declare function compile(options: RuntimeCompilerOptions): Promise; //# sourceMappingURL=compiler.d.ts.map