/** The first day of the month `iso` falls in. */ export declare function monthStart(iso: string): string; /** `delta` months from `iso`, as that month's first day. */ export declare function shiftMonth(iso: string, delta: number): string;