/** * Format a string suitable for HTML datetime-local inputs from a date-time object. * * @returns A string in format `yyyy-mm-ddThh:mm` * * @throws {RangeError} Year must be after year 0 * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/datetime-local | HTML input datetime-local on MDN} */ export declare function formatDatetimeLocal({ year, month, day, hour, minute, }: { year: number | string; month?: number | string; day?: number | string; hour?: number | string; minute?: number | string; }): string; //# sourceMappingURL=formatDatetimeLocal.d.ts.map