import { Log } from '@toreda/log';
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, log?: Log): Time;
