/** @typedef {typeof __propDef.props} TableRowProps */ /** @typedef {typeof __propDef.events} TableRowEvents */ /** @typedef {typeof __propDef.slots} TableRowSlots */ export default class TableRow extends SvelteComponentTyped<{ lastClicked: any; row?: {}; cols?: any[]; selected?: any; }, { click: CustomEvent; checked: CustomEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type TableRowProps = typeof __propDef.props; export type TableRowEvents = typeof __propDef.events; export type TableRowSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { lastClicked: any; row?: {}; cols?: any[]; selected?: any; }; events: { click: CustomEvent; checked: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};