import { BlockDescription } from "../../../aggregate/Blocks"; import { WeekdayHourEntry } from "../../../aggregate/Common"; export interface CallsActivity { /** Each entry contains the total amount of seconds spent in calls for that hour of the week */ weekdayHourActivity: WeekdayHourEntry[]; } declare const _default: BlockDescription<"calls/activity", CallsActivity, undefined>; export default _default;