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