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

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