import Host, { HostDto } from '../types/Host'; export default class HostMapper { static toDto(host: Host): HostDto; static toUpdatedHost(dto: HostDto, current: Host): Host; }