import { ComponentChildren } from 'preact'; import { CustomElement } from '@/types/customElement'; export default function MapSvg({ children, }: Readonly<{ children?: ComponentChildren; }>): import("preact/compat").JSX.Element; declare module 'react' { namespace JSX { interface IntrinsicElements { 'locator-map-svg': CustomElement; 'locator-map-svg-content': CustomElement; } } }