/** * Shared Date Formatting Utilities * Single source of truth for date formatting across the application */ /** * Format release date — avoids timezone shifts. * @returns e.g. `"November 11, 2025"` */ export declare function formatReleaseDate(dateString: string): string; /** * Short-form date — `"Jan 5, 2025"`. Same TZ-safe parsing as * `formatReleaseDate`; differs only in month abbreviation. Single source * of truth for the short-month-day-year shape used across hub admin * cards (waitlist, publication, media, investor, campaign, etc.) and * lib chat cards (campaign-card-admin). */ export declare function formatDateShort(dateString: string): string; /** * Slash-form date — `"11/11/2025"`. TZ-safe (string-split, no * `new Date(...)`). Used by hub admin product-release + customer- * interview cards where the compact MM/DD/YYYY layout is desired. */ export declare function formatDateSlashUTC(dateString: string): string; //# sourceMappingURL=date-formatters.d.ts.map