import type { LogLike } from './log/like';
import type { Time } from './time';
/**
 * Create Time object with months as time unit.
 * @param initial		Object's initial value (in months).
 * @returns				Time object
 *
 * @category Time Conversions
 */
export declare function months(initial: number | string, log?: LogLike): Time;
