import { JSStringValue, NumberValue, Value, type Arguments, type FunctionCallContext } from '../value.mts'; import { type ValueCompletion } from '../completion.mts'; import type { Realm } from '#self'; export declare function thisTimeValue(value: Value): ValueCompletion; /** https://tc39.es/ecma262/#sec-date.prototype.toisostring */ export declare function DateProto_toISOString(_args: Arguments, { thisValue }: FunctionCallContext): ValueCompletion; /** https://tc39.es/ecma262/#sec-timezoneestring */ export declare function TimeZoneString(tv: NumberValue): JSStringValue; /** https://tc39.es/ecma262/#sec-todatestring */ export declare function ToDateString(tv: NumberValue): JSStringValue; export declare function bootstrapDatePrototype(realmRec: Realm): void; //# sourceMappingURL=DatePrototype.d.mts.map