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