import type { AggregatedConditions, AggregatorOptions, ConfigHint, Coordinates, SourceResult } from '../types/index.js'; export declare function buildConfigHints(results: SourceResult[], coords: Coordinates): ConfigHint[]; /** Fetch all sources in parallel and log each call. Returns the flat result array. */ export declare function fetchAllSources(coords: Coordinates, options?: AggregatorOptions): Promise<{ all: SourceResult[]; }>; export declare function getConditions(coords: Coordinates, options?: AggregatorOptions): Promise;