import type { Day as WeekDay } from 'date-fns'; import type { Activity, Week } from "../types/charts"; export declare const DEFAULT_MONTH_LABELS: string[]; export declare const DEFAULT_LABELS: { legend: { less: string; more: string; }; months: string[]; tooltip: string; totalCount: string; weekdays: string[]; }; interface MonthLabel { label: string; weekIndex: number; } export declare const groupByWeeks: (activities: Array, weekStart?: WeekDay) => Array; export declare const getMonthLabels: (weeks: Array, monthNames?: Array) => Array; export declare const generateEmptyData: () => Array; export declare const generateTestData: (args: { interval?: { end: Date; start: Date; }; maxLevel?: number; }) => Array; export declare const maxWeekdayLabelLength: (firstWeek: Week, weekStart: number, labels: string[], fontSize: number) => number; export {};