export interface RollupOptions { moduleName: string; entry: string; format: string; dest: string; externals: Object; } /** * Runs rollup over the given entry file, bundling it up. * * @param opts */ export declare function rollup(opts: RollupOptions): Promise;