import { Item } from './item'; import { Period } from './period'; export declare class Group { readonly name: string; readonly items: Item[]; readonly duration?: Period; onClick?: () => void; constructor(name: string, items: Item[], onClick?: () => void); private static calculateDuration; }