import { TypeContracts } from '../data-contracts';
import { ContentType } from '../models';
export declare class TypeMapper {
    mapSingleType(response: TypeContracts.ITypeResponseContract): ContentType;
    mapMultipleTypes(response: TypeContracts.ITypesResponseContract): ContentType[];
    private mapType(type);
}
