import { IFieldSchema } from "../../../"; /** * Helper function that will build out the field schema for each object. This function is meant to * rebuild schemas if needed based on the options given to the field. * * @param field: IFieldSchema * The field schema we need to scrub before sending it back to mongoose for processing * @return: IFieldSchema * Will return a scrubbed IFieldSchema object back for processing by mongoose */ export declare function GetMongooseFieldSchema(field: IFieldSchema): IFieldSchema;