import { ComponentType } from 'react'; import { ComponentMapping } from '@adobe/aem-spa-component-mapping'; import { MappedComponentProperties } from '../types/EditConfig'; /** * @private */ type MapperFunction
= (_component: ComponentType
) => ComponentType
; declare const MapTo:
(resourceTypes: string | string[]) => MapperFunction
; export { ComponentMapping, MapTo };