//#region src/utils/constants.d.ts /** * The default version number for master metadata. * @constant {number} */ declare const DEFAULT_MASTER_METADATA_VERSION = 0; declare const FOOTNOTE_MARKER = "_________"; /** * Placeholder value used to represent unknown or missing data. * @constant {string} */ declare const UNKNOWN_VALUE_PLACEHOLDER = "99999"; declare const FOREWORD_MARKER = "\u8204"; /** * Default rules to map characters from page content. */ declare const DEFAULT_MAPPING_RULES: Record; //#endregion export { DEFAULT_MAPPING_RULES, DEFAULT_MASTER_METADATA_VERSION, FOOTNOTE_MARKER, FOREWORD_MARKER, UNKNOWN_VALUE_PLACEHOLDER }; //# sourceMappingURL=constants.d.ts.map