import { Types } from 'mongoose'; /** * Checks if a value is a valid bson ObjectId * * @return {boolean} return true if the value is a valid bson ObjectId, return false otherwise. */ export declare function isValidObjectId(id: string | number | Types.ObjectId): boolean;