/**
 * Write a package json file
 * @author Gabe Abrams
 * @param filename filename for the package.json
 * @param contents contents of the package.json
 */
declare const writePackageJSON: (filename: string, contents: any) => void;
export default writePackageJSON;
