import { AspectData, Settings } from '../types'; /** * Provides a default grouping of aspects into "Tight", "Moderate", and "Wide" categories * based on orb thresholds. This is used by the simple chart2txt() function. * @param aspects The raw list of aspects to group. * @param settings The chart settings, containing aspectStrengthThresholds. * @returns A map of category names to aspect data arrays. */ export declare function groupAspects(aspects: AspectData[], settings: Settings): Map;