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