import { Point } from '../types'; /** * Calculates the full dispositor chain for each planet in the chart. * @param planets The list of planets in the chart. * @param mode Controls which dispositor chains to include: true (all), false (none), 'finals' (only final dispositors and cycles). * @returns A map of each planet to its full dispositor chain string, or a summary in 'finals' mode. */ export declare function calculateDispositors(planets: Point[], mode?: boolean | 'finals'): { [key: string]: string; };