import { FlexboxProps } from '@lobehub/ui'; import type { Day as WeekDay } from 'date-fns'; import { ReactNode } from 'react'; import { NoDataProps } from "../common/NoData"; import type { Activity, Labels } from "../types/charts"; export interface HeatmapsProps extends FlexboxProps { blockMargin?: number; blockRadius?: number; blockSize?: number; colors?: string[]; customTooltip?: (activity: Activity) => ReactNode; data: Array; fontSize?: number; hideColorLegend?: boolean; hideMonthLabels?: boolean; hideTotalCount?: boolean; labels?: Labels; loading?: boolean; maxLevel?: number; noDataText?: NoDataProps['noDataText']; onValueChange?: (value: Activity) => void; showTooltip?: boolean; showWeekdayLabels?: boolean; totalCount?: number; weekStart?: WeekDay; } declare const Heatmaps: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Heatmaps;