import FunctionalStar from './FunctionalStar';
/**
 * 安14辅星，寅宫下标为0，若下标对应的数组为空数组则表示没有星耀
 *
 * @param solarDateStr 阳历日期字符串
 * @param timeIndex 时辰索引【0～12】
 * @param fixLeap 是否修复闰月，假如当月不是闰月则不生效
 * @returns 14辅星
 */
export declare const getMinorStar: (solarDateStr: string, timeIndex: number, fixLeap?: boolean) => FunctionalStar[][];
