import { ObjectId } from 'mongodb'; export interface IncomingDoc { id: string; } export declare class Document { id?: ObjectId; static fromDb(): void; toBSON(): void; } export { Document as Doc };