diff --git a/CHANGELOG.md b/CHANGELOG.md
index 922c4487..2a9f63be 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,34 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+
+# 0.7.0 (2023-05-16)
+
+
+### Bug Fixes
+
+* Fixed[#41](https://github.com/securedeveloper/react-data-export/issues/41), Fixed[#55](https://github.com/securedeveloper/react-data-export/issues/55), Fixed[#66](https://github.com/securedeveloper/react-data-export/issues/66), Fixed[#67](https://github.com/securedeveloper/react-data-export/issues/67), Fixed[#68](https://github.com/securedeveloper/react-data-export/issues/68), Fixed[#69](https://github.com/securedeveloper/react-data-export/issues/69), Fixed[#72](https://github.com/securedeveloper/react-data-export/issues/72) ([0144afc](https://github.com/securedeveloper/react-data-export/commit/0144afc))
+* improve types to represent children, fix types to represent ExcelCellData with arrays (as in ex2 - multiDataSet) ([5f0d69d](https://github.com/securedeveloper/react-data-export/commit/5f0d69d))
+* int cells were not supported in dataSet format ([513ae48](https://github.com/securedeveloper/react-data-export/commit/513ae48))
+* package vulnerabilities. ([082947a](https://github.com/securedeveloper/react-data-export/commit/082947a))
+* package vulnerabilities. ([d66eb9e](https://github.com/securedeveloper/react-data-export/commit/d66eb9e))
+* package.json to reduce vulnerabilities ([cfc5ecb](https://github.com/securedeveloper/react-data-export/commit/cfc5ecb))
+* remove package.lock to stabalize ([6e66121](https://github.com/securedeveloper/react-data-export/commit/6e66121))
+* updated package to tempa-xlsx, updated jest test environment and imports. ([b4f03ac](https://github.com/securedeveloper/react-data-export/commit/b4f03ac))
+* **graphite:** move to npm package ([560b2f9](https://github.com/securedeveloper/react-data-export/commit/560b2f9)), closes [issue#41](https://github.com/issue/issues/41)
+
+
+### Features
+
+* add excel data export ([94530e3](https://github.com/securedeveloper/react-data-export/commit/94530e3))
+* add jest support ([ff3a2ba](https://github.com/securedeveloper/react-data-export/commit/ff3a2ba))
+* add react component typings ([25528dd](https://github.com/securedeveloper/react-data-export/commit/25528dd))
+* if the header has style then the style should be used ([855d37a](https://github.com/securedeveloper/react-data-export/commit/855d37a))
+* support col width ([dc6dc60](https://github.com/securedeveloper/react-data-export/commit/dc6dc60))
+* update example with col widths ([4863aaf](https://github.com/securedeveloper/react-data-export/commit/4863aaf))
+
+
+
# [0.6.0](https://github.com/securedeveloper/react-data-export/compare/v0.5.0...v0.6.0) (2020-01-20)
diff --git a/dist/index.d.ts b/dist/index.d.ts
new file mode 100644
index 00000000..4faae14b
--- /dev/null
+++ b/dist/index.d.ts
@@ -0,0 +1,144 @@
+/* index.d.ts (C) react-data-export */
+
+// TypeScript Version: 2.2
+declare module 'react-data-export' {
+ import * as React from 'react';
+
+ export interface ExcelFileProps {
+ filename?: string;
+ fileExtension?: string;
+ element?: any; //Download Element
+ children?: Array | React.ReactElement; // Array;
+ }
+
+ export interface ExcelSheetProps {
+ name: string;
+ data?: Array