import { Temporal } from "@js-temporal/polyfill";
/**
 * Type-check to determine if `value` is a `Temporal.Instant` object
 *
 * @param value - The value to check
 * @returns The function isInstant is returning a boolean value.
 */
export declare function isInstant(value: unknown): value is Temporal.Instant;
