import { GCalEvent } from "../models/event";
import { Dictionary } from "lodash";
export declare const filterWithRange: (from: Date, to: Date) => (gCalEvents: GCalEvent[]) => GCalEvent[];
export declare const sortWithinDay: (gCalEvent: GCalEvent[]) => GCalEvent[];
export declare const groupAcrossDays: (gCalEvents: GCalEvent[]) => Dictionary<GCalEvent[]>;
export declare const groupAndSort: (gCalEvent: GCalEvent[]) => Dictionary<GCalEvent[]>;
