import { type ComPlainDate } from "../PlainDate.js"; import { type ComPlainTime } from "../PlainTime.js"; /** * Split native JS `Date` objects into separate plain-date and plain-time parts * in the system's local timezone. * * If called without `Date` parameter, the current date in the local timezone * will be returned. */ export declare function splitLocalDateTime(instant?: Date): [ComPlainDate, ComPlainTime]; //# sourceMappingURL=splitLocalDateTime.d.ts.map