import { ApiService, RegistryAuth } from '../types'; export declare class RegistryAuthService { protected api: ApiService; constructor(api?: ApiService); create(accessToken: string, teamname: string, opName: string, opVersion: string, pullAccess: boolean, pushAccess: boolean): Promise; delete(accessToken: string, id: number, teamName: string, opName: string, opVersion: string): Promise; }