import { IFieldSchema } from "../interfaces/IFieldSchema"; /** * Decorator that will determine a field on the database model * * @param options?: IFieldSchema * The options this field should use when building out the database model * @return Function * Will return a function that will be used by the Reflection API to build out everything on the object */ export declare function Field(options?: IFieldSchema): (target: any, propertyKey: string) => void;