import { TemporalPeriod } from "../../types"; /** * Check if a value is a temporal period. * * @param value - The value to check. * @returns {boolean} - Whether the value is a temporal period. */ export declare const isTemporalPeriod: (value: unknown) => value is TemporalPeriod;