import { ProblemDocument } from 'http-problem-details'; import { IMappingStrategy } from './IMappingStrategy'; import { MapperRegistry } from './MapperRegistry'; export declare class DefaultMappingStrategy implements IMappingStrategy { readonly registry: MapperRegistry; constructor(registry: MapperRegistry); map(error: any): ProblemDocument | null; }