import { Range } from './range';
declare type Month = string;
declare const _monthsInRange: ({ start, end }: Range) => Month[];
export default _monthsInRange;
