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