import { LitElement } from 'lit'; import '../../button'; import './action-menu.sample'; import '../../pagination'; import '../index'; declare class MyStoryTable extends LitElement { static styles: import("lit").CSSResult; /** * kynTable: Reference to the kyn-table component. * @ignore */ private accessor kynTable; accessor rows: any; accessor selectedRows: never[]; accessor checkboxSelection: boolean; accessor striped: boolean; accessor stickyHeader: boolean; accessor dense: boolean; accessor fixedLayout: boolean; accessor selectedCount: number; accessor showTableActions: boolean; accessor sortable: boolean; accessor expandable: boolean; accessor tableTitle: string; accessor tableSubtitle: string; accessor showPagination: boolean; accessor showLegend: boolean; accessor pageSize: number; accessor pageNumber: number; accessor pageSizeOptions: number[]; /** Option to hide the items range display. */ accessor hideItemsRange: boolean; /** Option to hide the page size dropdown. */ accessor hidePageSizeDropdown: boolean; /** Option to hide the navigation buttons. */ accessor hideNavigationButtons: boolean; /** * multiSelectColumnWidth: The width of the multi-select column. * @type {string} * @default '64px' */ accessor multiSelectColumnWidth: string; /** * Handles the change of page size in pagination. */ onPageSizeChange(event: CustomEvent): Promise; /** * Handles the change of page number in pagination. */ onPageNumberChange(event: CustomEvent): Promise; handleSortByIdNumber(e: CustomEvent): void; handleSortByAge(e: CustomEvent): void; handleSortByFName(e: CustomEvent): void; handleSortByLName(e: CustomEvent): void; handleSortByDate(e: CustomEvent): void; handleExpand(e: CustomEvent, rowId: any): void; deleteAction(id: number): Promise; deleteSelectedRows(): Promise; handleSelectedRowsChange(e: CustomEvent): void; firstUpdated(): void; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'my-story-table': MyStoryTable; } } export {}; //# sourceMappingURL=table-story.sample.d.ts.map