export declare const DNAME: string;
/**
 * This is a decorator to add to model attributes we want to keep typing for after transpile for
 * nested/ deep objects and arrays
 * Example:
 *
 *    @ClassCast(Employee)
 *    public employee: Employee = undefined;
 */
export declare function ClassCast(cast: any): (target: any, classPropertyName: string) => void;
