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