interface NpmOptions {
    /**
     * Specify the tag to publish on
     * @default "latest"
     * @see {@link https://docs.npmjs.com/cli/v8/commands/npm-publish#tag}
     */
    tag?: string;
    /**
     * Indicates that a provenance statement should be generated.
     * @default false
     * @see {@link https://docs.npmjs.com/cli/v8/commands/npm-publish#provenance}
     */
    provenance?: boolean;
    /**
     * Specify the registry to publish to, overriding the default registry.
     * @default undefined
     * @see {@link https://docs.npmjs.com/cli/v9/using-npm/config#registry}
     */
    registry?: string;
}
export default function (PATH: string, npmOpts?: NpmOptions): Promise<void>;
export {};
