///
import { Model, SchemaType } from "mongoose";
export declare function getReferencePaths(model: Model): string[];
export declare function isReferencePath(schemaType: SchemaType): boolean;
export declare function isRootModel(model: Model): boolean;
export declare function getReferencedModelName(model: Model, path: string): string | undefined;
export declare function getDiscriminatorKey(model: Model): string | undefined;
export declare function getVersionKey(model: Model): string;
export declare function getMetaKeys(model: Model): string[];