/** * ROW SELECTION TESTS * Ported from React - same tests, vanilla table only. */ import { SimpleTableVanilla } from "../../src/index"; import type { Meta } from "@storybook/html"; declare const meta: Meta; export default meta; export declare const BasicRowSelection: { render: () => HTMLDivElement & { _table?: SimpleTableVanilla | undefined; }; play: ({ canvasElement }: { canvasElement: any; }) => Promise; }; export declare const SelectAllFunctionality: { tags: string[]; render: () => HTMLDivElement & { _table?: SimpleTableVanilla | undefined; }; play: ({ canvasElement }: { canvasElement: any; }) => Promise; }; export declare const PartialSelectionState: { render: () => HTMLDivElement & { _table?: SimpleTableVanilla | undefined; }; play: ({ canvasElement }: { canvasElement: any; }) => Promise; }; export declare const OnRowSelectionChangeCallback: { render: () => HTMLDivElement; play: ({ canvasElement }: { canvasElement: any; }) => Promise; }; export declare const SelectionWithPagination: { render: () => HTMLDivElement & { _table?: SimpleTableVanilla | undefined; }; play: ({ canvasElement }: { canvasElement: any; }) => Promise; }; export declare const NoSelectionWithoutProp: { render: () => HTMLDivElement & { _table?: SimpleTableVanilla | undefined; }; play: ({ canvasElement }: { canvasElement: any; }) => Promise; }; export declare const SelectionPersistsThroughSort: { render: () => HTMLDivElement & { _table?: SimpleTableVanilla | undefined; }; play: ({ canvasElement }: { canvasElement: HTMLElement; }) => Promise; }; export declare const SelectionPersistsThroughFilter: { render: () => HTMLDivElement; play: ({ canvasElement }: { canvasElement: HTMLElement; }) => Promise; };