/** @typedef {typeof __propDef.props} TableRowProps */ /** @typedef {typeof __propDef.events} TableRowEvents */ /** @typedef {typeof __propDef.slots} TableRowSlots */ /** * TableRow * * Row for a `Table` * * Slots: * - default: TableRow content, intended for `TableCell` components * * Css Variables: * - tableBg (default: #f0f0f0): background color for the header * - tableBorder (default: #c0c0c0): bottom border color for the header * - tableBgHover (default: #c0c0c0): Background color on hover * - tableBgAlternate (default: #fafafa): Row color when alternating */ export default class TableRow extends SvelteComponentTyped<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } 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: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};