import type { OneTimePasswordCache } from '@lerna-lite/version'; import npa from 'npm-package-arg'; import fetch from 'npm-registry-fetch'; import type { DistTagOptions } from '../interfaces.js'; export declare function add(spec: string, tag: string | undefined, options: DistTagOptions, otpCache: OneTimePasswordCache): any; export declare function remove(spec: string, tag: string, options: DistTagOptions, otpCache: OneTimePasswordCache): any; export declare function list(spec: string, options: DistTagOptions): any; export declare function fetchTags(opts: Omit & { spec: npa.Result; }): any;