/** * The minlength decorator assures that a string field contains at least a number of characters. * * @param len: the required length. * @param msg: A custom message. * */ export declare function MinLength(len: number, msg?: string): (target: object, property: string | symbol) => void;