import { GcloudBase } from "../GcloudBase"; import { IStandardListArgv } from "../types"; declare type IListResult = { service: string; numVersions: string; }; declare type IBrowseArgv = { launchBrowser?: boolean; version?: string; }; declare type ISetTrafficArgv = { splits: string; migrate?: string; splitBy?: string; }; export declare class GcloudAppServices extends GcloudBase { commandPrefix: string; list(argv?: IStandardListArgv): Promise; describe(service: string): Promise; delete(service: string): Promise; browse(service: string, argv?: IBrowseArgv): Promise; setTraffic(services: string, argv: ISetTrafficArgv): Promise; setTraffic(argv: ISetTrafficArgv): Promise; } export {};