/**
 * npm publish wrapper.
 *
 * Uses the locally installed `npm` binary. Authentication is expected to
 * be handled via `NPM_TOKEN` env var or `~/.npmrc`.
 */
export interface NpmPublishOptions {
    cwd?: string;
    tag?: string;
    dryRun?: boolean;
}
export declare function publishToNpm(options?: NpmPublishOptions): Promise<{
    stdout: string;
    stderr: string;
}>;
//# sourceMappingURL=npm.d.ts.map