export interface PluginConfig {
    /**
     * Whether to publish the npm package to the registry. If `false` the `package.json` version will still be updated.
     *
     * Default: `false` if the `package.json` [private](https://docs.npmjs.com/files/package.json#private) property is `true`, `true` otherwise.
     */
    readonly npmPublish?: boolean;
    /**
     *  Directory path in which to write the package tarball. If `false` the tarball is not be kept on the file system.
     *
     *  Default: `"."`
     */
    readonly tarballDir?: string | false;
}
export declare const PluginConfig: {
    normalize({ npmPublish, tarballDir, }?: PluginConfig | undefined): PluginConfig;
};
//# sourceMappingURL=pluginConfig.d.ts.map