import { CLICommand } from "./CLICommand"; import { ImportFeedCommand } from "./ImportFeedCommand"; import { DatabaseConfiguration, DatabaseConnection } from "../database/DatabaseConnection"; import { GTFSImportCommand } from "./GTFSImportCommand"; export declare class Container { getCommand(type: string): Promise; getFaresImportCommand(): Promise; getRouteingImportCommand(): Promise; getTimetableImportCommand(): Promise; getNFM64ImportCommand(): Promise; getCleanFaresCommand(): Promise; getShowHelpCommand(): Promise; getImportGTFSCommand(): Promise; private getOutputGTFSCommandWithOutput; private getOutputGTFSCommand; private getOutputGTFSZipCommand; private getDownloadCommand; private getDownloadNFM64Command; private getDownloadAndProcessCommand; private getDownloadAndProcessNFM64Command; private getSFTP; getDatabaseConnection(): DatabaseConnection; getDatabaseStream(): any; get databaseConfiguration(): DatabaseConfiguration; }