import { AspectPattern } from '../../../types'; /** * Generates the [ASPECT PATTERNS] section of the chart output. * @param patterns Array of detected aspect patterns * @param customTitle Optional custom title for the section * @param showChartNames Whether to show chart names for planets (false for single charts, true for multi-chart) * @returns An array of strings for the output. */ export declare function generateAspectPatternsOutput(patterns: AspectPattern[], customTitle?: string, showChartNames?: boolean): string[];