import { AstrologicalReport } from '../../types'; /** * Formats a pre-computed and pre-grouped AstrologicalReport into a human-readable text string. * @param report The AstrologicalReport object, with aspects already grouped. * @returns A string representing the full chart report. */ export declare function formatReportToText(report: AstrologicalReport): string;