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