export function newDateWithOffset(utcOffset: any): moment.Moment;
export function now(maybeFixedUtcOffset: any): moment.Moment;
export function getStartOfWeek(date: any): any;
export function getStartOfMonth(date: any): any;
export function getDate(date: any): any;
export function getMonth(date: any): any;
export function addDays(date: any, amount: any): any;
export function addWeeks(date: any, amount: any): any;
export function addMonths(date: any, amount: any): any;
export function subtractDays(date: any, amount: any): any;
export function subtractWeeks(date: any, amount: any): any;
export function subtractMonths(date: any, amount: any): any;
export function getLocaleData(date: any): any;
export function getWeekdayMinInLocale(locale: any, date: any): any;
export function localizeDate(date: any, locale?: string): any;
export function isSameDay(moment1: any, moment2: any): any;
export function isSameMonth(date1: any, date2: any): any;
export function isDayDisabled(day: any, { minDate, maxDate, filterDate }?: {}): any;
export function shouldPrevMonthDisable(day: any, minDate: any): boolean;
export function shouldNextMonthDisable(day: any, maxDate: any): boolean;
import moment from 'moment';
