export type DocumentJson = { [key: string]: unknown; }; export type DocumentUnknown = unknown; export type Document = DocumentJson | DocumentUnknown;