/** * @file Bazi Definitions * @description This file contains the static definitions for various Bazi concepts, * such as ShenSha (Symbolic Stars) and Ten Gods (ShiShen). * It serves as a centralized "knowledge base" to be used across the application. */ export declare const TIME_MAP: { index: 0 | 1 | 2 | 3 | 8 | 9 | 6 | 12 | 4 | 11 | 5 | 10 | 7; name: "早子时" | "丑时" | "寅时" | "卯时" | "辰时" | "巳时" | "午时" | "未时" | "申时" | "酉时" | "戌时" | "亥时" | "晚子时"; range: "00:00-01:00" | "01:00-03:00" | "03:00-05:00" | "05:00-07:00" | "07:00-09:00" | "09:00-11:00" | "11:00-13:00" | "13:00-15:00" | "15:00-17:00" | "17:00-19:00" | "19:00-21:00" | "21:00-23:00" | "23:00-24:00"; hour: 0 | 2 | 8 | 23 | 18 | 6 | 12 | 4 | 10 | 14 | 16 | 20 | 22; minute: 0 | 30; }[];