diff --git a/dist/index.d.ts b/dist/index.d.ts
index 45a3252d..271b83a1 100644
--- a/dist/index.d.ts
+++ b/dist/index.d.ts
@@ -1,6 +1,15 @@
-import { checkToken } from "./checkToken";
-import Config, { DefaultOptions } from "./Config";
-import { db } from "discord-server-util";
-
-import * as Constants from "./Constants";
-export { checkToken, Config, Constants, db, DefaultOptions };
+import { checkToken } from "./util/checkToken";
+import Config, { DefaultOptions } from "./util/Config";
+import db from "./util/Database";
+import * as Constants from "./util/Constants";
+import { Channel } from "./models/Channel";
+import { Emoji } from "./models/Emoji";
+import { Guild } from "./models/Guild";
+import { Invite } from "./models/Invite";
+import { Member } from "./models/Member";
+import { Role } from "./models/Role";
+import { User } from "./models/User";
+import { EmojiSchema } from "./Schema/Emoji";
+import { ActivitySchema } from "./Schema/Activity";
+import { IdentifySchema } from "./Schema/Identify";
+export { checkToken, Config, Constants, db, DefaultOptions, Channel, Emoji, Guild, Invite, Member, Role, User, EmojiSchema, ActivitySchema, IdentifySchema, };
|