import * as plugins from './tsbundle.plugins'; export declare class TsBundle { /** * the basic default options for rollup */ getBaseOptions(fromArg?: string, toArg?: string): plugins.rollup.RollupOptions; getOptionsTest(fromArg: string, toArg: string): plugins.rollup.RollupOptions; getOptionsProduction(fromArg: string, toArg: string): plugins.rollup.RollupOptions; constructor(); /** * creates a bundle for the test enviroment */ buildTest(fromArg: string, toArg: string): Promise; /** * creates a bundle for the production environment */ buildProduction(fromArg: string, toArg: string): Promise; }