/**
 * The decorator assures that a string field fullfilles a regular expression pattern.
 *
 * @param pattern: The expression as RegExp.
 * @param msg: A custom message.
 *
 */
export declare function Pattern(pattern: RegExp, msg?: string): (target: object, property: string | symbol) => void;
