export function getSelected(id: any): any[]; /** @typedef {typeof __propDef.props} TableProps */ /** @typedef {typeof __propDef.events} TableEvents */ /** @typedef {typeof __propDef.slots} TableSlots */ export default class Table extends SvelteComponentTyped<{ cols: any; rows: any; selected?: any; lastClicked?: any; class?: string; title?: string; isExportable?: boolean; maxChecked?: number; isValid?: boolean; alternateRows?: boolean; dark?: boolean; light?: boolean; border?: boolean; pageRows?: number; currentPage?: number; showPagination?: boolean; showPageRowsSelector?: boolean; searchable?: boolean; filteredRows?: any; getSelected?: () => any; }, { click: CustomEvent; selected: CustomEvent; } & { [evt: string]: CustomEvent; }, { toolbar: {}; }> { get getSelected(): () => any; } export type TableProps = typeof __propDef.props; export type TableEvents = typeof __propDef.events; export type TableSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { cols: any; rows: any; selected?: any; lastClicked?: any; class?: string; title?: string; isExportable?: boolean; maxChecked?: number; isValid?: boolean; alternateRows?: boolean; dark?: boolean; light?: boolean; border?: boolean; pageRows?: number; currentPage?: number; showPagination?: boolean; showPageRowsSelector?: boolean; searchable?: boolean; filteredRows?: any; getSelected?: () => any; }; events: { click: CustomEvent; selected: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { toolbar: {}; }; }; export {};