import './data-table'; import type { Person } from './test/makeData'; import type { ColumnDef } from '@tanstack/table-core'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { columns: { control: string; }; rows: { control: string; }; sortable: { control: string; }; selectable: { control: string; }; resizable: { control: string; }; paginate: { control: string; }; paginateExpanded: { control: string; }; rowsPerPage: { control: string; }; expandable: { control: string; }; expandAll: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { columns: ColumnDef[]; rows: Person[]; sortable: boolean; selectable: boolean; resizable: boolean; paginate: boolean; paginateExpanded: boolean; rowsPerPage: number; expandable: boolean; expandAll: boolean; } export declare const Basic: Story; export declare const Paginate: Story; export declare const Selectable: Story; export declare const Sortable: Story; export declare const RowExpansion: Story; export declare const ColumnGrouping: Story;