/** * Create a native JS `Date` object from a date-time * interpreted in the system's local timezone. */ export declare function createLocalInstant({ year, month, day, hour, minute, second, millisecond, }: { year: number | string; month?: number | string; day?: number | string; hour?: number | string; minute?: number | string; second?: number | string; millisecond?: number | string; }): Date; //# sourceMappingURL=createLocalInstant.d.ts.map