import FMCCommand from '../../FMCCommand'; export interface IInterfacesCell { [name: string]: string; } export interface IServiceRow { application: string; interfaces: IInterfacesCell; } export default class DevspaceServices extends FMCCommand { static description: string; static examples: string[]; static flags: any; static args: { name: string; }[]; run(): Promise; } //# sourceMappingURL=services.d.ts.map