import { IVideo, IVideoResource } from "./"; import { IJsonApiResource } from "../../interfaces"; import Mapper from "../../mapper"; export declare class VideoMapper extends Mapper { private mappers; toModel(resource: IVideoResource, included?: IJsonApiResource[]): IVideo; toResource(model: IVideo): IVideoResource; private mapIncluded(resourceIdentifier, included); } export default VideoMapper;