import type { MomentInput, Moment, default as MomentJS } from 'moment'; declare global { interface JQueryStatic { /** * Initiates an instance of moment.js * * @param input * @param strict */ moment(input?: MomentInput, strict?: boolean): Moment; /** * Initiates an instance of moment.js from a UTC date * * @param input * @param strict */ momentUtc(input?: MomentInput, strict?: boolean): Moment; } interface Window { moment: typeof MomentJS; } } export {};