import type { UserConfig, WalkResults, WalkReportTagList } from '../types.js';
import { SpeedEstimation } from '../../components/walk/getEndDatesEstimations.js';
declare const buildWalkReport: ({ userConfig, tags, results, endDateEstimations, reportName, reportsLinks, }: {
    userConfig: UserConfig;
    tags: WalkReportTagList;
    results: WalkResults;
    endDateEstimations: {
        rules: Record<string, SpeedEstimation>;
        global: SpeedEstimation;
    };
    reportName: string;
    reportsLinks: {
        name: string;
        link: string;
    }[];
}) => void;
export default buildWalkReport;
