import { PlanetPosition } from '../../../types'; /** * Generates the [PLANETS] section of the chart output. * @param placements Array of planet positions. * @param settings The chart settings. * @returns An array of strings for the output. */ export declare function generatePlanetsOutput(placements: PlanetPosition[]): string[];