import { CLICommand } from "./CLICommand"; import { DatabaseConfiguration } from "../database/DatabaseConnection"; export declare class GTFSImportCommand implements CLICommand { private readonly db; constructor(db: DatabaseConfiguration); /** * Create the text files and then zip them up using a CLI command that hopefully exists. */ run(argv: string[]): Promise; }