import { AspectData, AspectPattern, UnionedPoint } from '../types'; /** * Main function to detect aspect patterns (excluding stelliums which are handled separately) * This function works with both single-chart and multi-chart scenarios * @param planets Array of planets to analyze * @param aspects Pre-calculated aspects between planets * @param houseCusps Optional house cusps for single-chart reference * @param planetChartMap Optional mapping from planet name to chart name for multichart ownership context */ export declare function detectAspectPatterns(unionedPoints: UnionedPoint[], aspects: AspectData[], houseCusps?: number[]): AspectPattern[];