export type Populated<T extends {
    _id: unknown;
}, ID extends T['_id'] = T['_id']> = ID | (Omit<Partial<T>, '_id'> & {
    _id: ID;
});
