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<RegistryAuth>;
}
