import type { Element } from "../types"; export interface NayinResult { element: Element; korean: string; hanja: string; } export declare function getNayin(pillarIdx60: number): NayinResult; export declare function getNayinFromPillar(pillar: string): NayinResult; export interface FourPillarsNayin { year: NayinResult; month: NayinResult; day: NayinResult; hour: NayinResult; } export declare function analyzeFourPillarsNayin(yearPillar: string, monthPillar: string, dayPillar: string, hourPillar: string): FourPillarsNayin; //# sourceMappingURL=nayin.d.ts.map