import type { Time } from '../../time';
/**
 * Check whether provided object is a Time object.
 * @param o
 * @returns
 *
 * @category Validators
 */
export declare function timeCheckType(o: unknown): o is Time;
