import { OutputOptions } from 'rollup'; import { ProjectService } from './project.service'; export { OutputOptions }; export declare class RollupService { private projectService; constructor(projectService: ProjectService); getConfigs(): Promise<{ resolveConfigs: {}; commonjsConfigs: {}; }>; bundleCode(input: string, outputs: OutputOptions[]): Promise; }