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