import { CmsHelperInterface, CmsServiceInterface, MapperServiceInterface } from '../interfaces';
import { Component, Page } from '../types';
declare class MapperService implements MapperServiceInterface {
    handle(page: Page, cmsService: CmsServiceInterface, cmsHelper: CmsHelperInterface, importMapper: any): Promise<Component>;
}
export declare const mapperService: MapperService;
export {};
