import { Settings, PartialSettings, Aspect, AspectStrengthThresholds } from '../types'; export declare class ChartSettings implements Settings { houseSystemName: string; skipOutOfSignAspects: boolean; aspectDefinitions: Aspect[] | 'traditional' | 'modern' | 'tight' | 'wide'; aspectStrengthThresholds: AspectStrengthThresholds; includeAspectPatterns: boolean; includeSignDistributions: boolean; includeDispositors: boolean | 'finals'; includeHouseOverlays: boolean; dateFormat: string; outputMode: 'standard' | 'composite'; constructor(customSettings?: PartialSettings); /** * Gets the resolved aspect definitions (handles preset strings) */ get resolvedAspectDefinitions(): Aspect[]; }