import { FetchConfig } from "./fetch-config";
/**
 * Throw an error if the logged-in user does not have read-write access to all packages.
 */
export declare function verifyNpmPackageAccess(packages: {
    name: string;
}[], username: string, options: Partial<FetchConfig>): Promise<void>;
