import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "values" | "diverging" | "calendar" | "activity" | "risk" | "correlation" | "sparse"; palette?: import("./Heatmap.svelte.ts").HeatmapPalette; size?: import("./Heatmap.svelte.ts").HeatmapSize; showValues?: boolean; showLegend?: boolean; interactive?: boolean; rotateColLabels?: boolean; unit?: string; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; palette: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; showValues: { control: "boolean"; }; showLegend: { control: "boolean"; }; interactive: { control: "boolean"; }; rotateColLabels: { control: "boolean"; }; unit: { control: "text"; }; }; args: { example: "activity"; palette: "brand"; size: "md"; showValues: false; showLegend: true; interactive: true; rotateColLabels: false; unit: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Correlation: Story; export declare const Risk: Story; export declare const Calendar: Story; export declare const WithValues: Story; export declare const Sparse: Story; export declare const Diverging: Story;