import { LiuRenResult, LuNianResult, Gender } from "./liuren/type"; export * from "./liuren/tianDiPan"; export * from "./liuren/siKe"; export * from "./liuren/sanChuan"; export * from "./liuren/dunGan"; export * from "./liuren/jianChu"; export * from "./liuren/shenSha"; export * from "./liuren/yinYangGuiRen"; export * from "./common/date"; export * from "./liuren/type"; export { DiZhiPinyin, DiZhiToPinyin, PinyinToDiZhi, DiZhiKey } from "./maps/ganZhi"; /** * 使用 Date 对象进行大六壬排盘 */ export declare const getLiuRenByDate: (date: Date) => LiuRenResult; /** * 使用四柱干支进行大六壬排盘 */ export declare const getLiuRenBySiZhu: (year: string, month: string, day: string, hour: string) => LiuRenResult; /** * 计算虚岁流年 */ export declare const getNianMing: (birthDate: Date, gender: Gender) => LuNianResult;