import type { Helper } from "../helper-registry.js"; /** * Converts an ISO 8601 timestamp to a human-readable short format. * Perfect for displaying test timestamps, build times, or execution dates in a compact format. * * @example * {{formatTimestampShort "2025-01-19T15:06:45Z"}} * * * {{formatTimestampShort test.timestamp}} * * * {{formatTimestampShort build.createdAt}} * * * @param {unknown} timestamp - The ISO 8601 timestamp string to convert. * @returns {string} A human-readable string in format "Mon DD, YY, H:MM AM/PM". * Use for displaying timestamps in test reports, build logs, or execution summaries. */ export declare const formatTimestampShortHelper: Helper; export declare const timestampHelpers: Helper[];