export declare class ContainerAggregator {
    /**
     * Generates the aggregated container code.
     */
    generateAggregatedContainer(sortedModules: string[]): string;
    /**
     * Generates the type export for the container.
     */
    generateModularTypeExport(): string;
    /**
     * Generates the type export for the container with path injection utilities.
     * @param outputPath Path to the container file to check for existing onInit content
     */
    generateModularTypeExportWithPathUtils(outputPath?: string): string;
}
//# sourceMappingURL=container-aggregator.d.ts.map