When you have a data structure like this: ```ts export const comment = mysqlTable('crawl_item', { id: cuid2('id').primaryKey().notNull(), parent: cuid2('parent').references(() => comment.id), }); ``` You see the error: ``` 'comment' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer. ``` Is there a workaround? This is blocking us unfortunately.