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