import type { Time } from '../../time';
/**
 * Check whether provided object defines all time methods required to
 * a Time object.
 * @param o
 * @returns
 *
 * @category Validators
 */
export declare function timeCheckMethods(o?: Time | null): boolean;
