/** * MAX HEIGHT SCROLLING TESTS * * Regression test for v2.6.5 fix: when maxHeight is set and total content * height exceeds maxHeight, the table body must scroll even when row count * is below VIRTUALIZATION_THRESHOLD (20). */ import type { Meta } from "@storybook/html"; declare const meta: Meta; export default meta; export declare const MaxHeightScrollsWithFewRows: { tags: string[]; render: () => HTMLDivElement & { _table?: import("../../src/index").SimpleTableVanilla | undefined; }; play: ({ canvasElement }: { canvasElement: any; }) => Promise; }; export declare const MaxHeightNoScrollWhenContentFits: { tags: string[]; render: () => HTMLDivElement & { _table?: import("../../src/index").SimpleTableVanilla | undefined; }; play: ({ canvasElement }: { canvasElement: any; }) => Promise; };