/** * Helper functions for publishing packages within a [monorepo](https://monorepo.tools/). * * @module */ /** * Helper function to publish one of a monorepo's packages to npm. * * This function attempts to find the monorepo root directory automatically based on searching * backwards from the file of the calling function. * * @param importMetaDirname The value of `import.meta.dirname` (so that this function can find the * package root). * @param updateMonorepo Optional. Attempt to update the monorepo dependencies after the publish is * completed. Defaults to true. * @throws If publishing fails. */ export declare function monorepoPublish(importMetaDirname: string, updateMonorepo?: boolean): Promise; //# sourceMappingURL=monorepoPublish.d.ts.map