import type { SemanticVersion, TVODefaults } from "../types"; /** * @file Configuration - Constant Values * @module grease/config/constants */ /** * @property {string} GH_RELEASE_CREATE - Command to create releases via GH CLI * @see https://cli.github.com/manual/gh_release_create */ export declare const GH_RELEASE_CREATE = "gh release create"; /** * @property {string} GREASER_NOTES_BIRTHDAY - `Greaser#notes` birthday format */ export declare const GREASER_NOTES_BIRTHDAY = "## Overview\n\n\n\n\n\n## Features\n\n\n\n\n-\n-\n-\n\n\n"; /** * @property {string} GREASER_NOTES_BLANK - `Greaser#notes` blank format */ export declare const GREASER_NOTES_BLANK = ""; /** * @property {string} GREASER_NOTES_NULL - `Greaser#notes` null format */ export declare const GREASER_NOTES_NULL: null; /** * @property {string} GREASER_TITLE_BIRTHDAY - Birthday release title substring */ export declare const GREASER_TITLE_BIRTHDAY = "(\uD83C\uDF82 First Release)"; /** * @property {string} LINE_BREAK - Line break */ export declare const LINE_BREAK = "\n"; /** * @property {string} RELEASE_PATTERN - `CHANGELOG` release heading pattern */ export declare const RELEASE_PATTERN: RegExp; /** * @property {SemanticVersion} DEFAULT_VERSION - Package version placeholder * Forces NOT_FOUND Exception or ValidationException */ export declare const DEFAULT_VERSION: SemanticVersion; /** * @property {TVODefaults} TVO_DEFAULTS - `class-transformer-validator` options * @see https://github.com/MichalLytek/class-transformer-validator */ export declare const TVO_DEFAULTS: TVODefaults;