import { Command } from 'commander'; import CliCommand from './cli-command'; export default class Unpack extends CliCommand { constructor(); options(_module: Command): void; handler(module: Command, tacoName: string): void; unpackConnector(tacoName: string, tacoPath?: string): void; isValidTacoFile(connectorPath: string): boolean; }