import { ApiService, OpCommand, RegistryAuth } from '../types'; import { FeathersClient } from './Feathers'; export declare class Publish { publishOpToAPI: (op: OpCommand, platformVersion: string, teamName: string, accessToken: string, api: ApiService) => Promise; publishOpToRegistry: (apiOp: OpCommand, registryAuth: RegistryAuth, teamName: string, accessToken: string, api: FeathersClient) => Promise; }