import type { Temporal } from "../types.js";
/**
 * Returns Temporal instance which represents clock (local) time of given date.
 * @param date `Date` object
 * @param TemporalClass Temporal class (such as `Temporal.Plaindate`) which will be returned
 * @returns an instance of Temporal class specified in `temporalClass` argument, which represents the clock time of original date
 */
export declare function toTemporalFromClockTime<TemporalClassType extends typeof Temporal.PlainDate | typeof Temporal.PlainTime | typeof Temporal.PlainDateTime | typeof Temporal.PlainYearMonth | typeof Temporal.PlainMonthDay>(date: Date, TemporalClass: TemporalClassType): InstanceType<TemporalClassType>;
//# sourceMappingURL=toTemporalFromClockTime.d.ts.map