import * as rollup from 'rollup';
import { RollupBuild, OutputOptions } from 'rollup';

declare function writeBundles(bundle: RollupBuild, options: OutputOptions[]): Promise<rollup.RollupOutput[]>;
declare function formatBundleFilename(name: string, minify: boolean, ext: string): string;

export { formatBundleFilename, writeBundles };
