export interface Range {
    start: string;
    end: string;
}
declare const _range: (days: string[]) => Range;
export default _range;
