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