import { Command } from 'commander'; import CliCommand from './cli-command'; export default class Launch extends CliCommand { tableauProduct: string; tableauProductVersion: string; tableauProductExecutablePath: string; tacoPath: string; epsPath: string; constructor(); options(module: Command): void; handler(module: Command, tacoName: string): void; launchTableau(tacoPath?: string, tableauProduct?: string): boolean; getTableauExecutablePath(tableauProduct?: string, tableauProductVersion?: string): string; getTableauProductVersionNumber(): string; }