import type { Components, JSX } from "../types/components";

interface SlTableRow extends Components.SlTableRow, HTMLElement {}
export const SlTableRow: {
    prototype: SlTableRow;
    new (): SlTableRow;
};
/**
 * Used to define this component and all nested components recursively.
 */
export const defineCustomElement: () => void;
