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

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