import { type ComPlainDate } from "../PlainDate.js"; import { type ComPlainTime } from "../PlainTime.js"; /** * Get a function curried with a timezone, to split native JS `Date` objects * into separate plain-date and plain-time parts. * * If called without `Date` parameter, the current date in the timezone will be * returned. * * @param timezone A named IANA timezone * @returns A curried function that operates on JS `Date` objects * * @throws {RangeError} Invalid timezone specified */ export declare function splitDateTime(timezone: string): (instant?: Date) => [ComPlainDate, ComPlainTime]; //# sourceMappingURL=splitDateTime.d.ts.map