import { EightChar } from 'tyme4ts';
type RelationInfo = {
    柱: string;
    [key: string]: any;
};
type Relation = {
    [zhu: string]: {
        天干: {
            [key: string]: RelationInfo[];
        };
        地支: {
            [key: string]: RelationInfo[];
        };
        [key: string]: any;
    };
};
export declare function getRelation(eightChar: EightChar): Relation;
export {};
