import { CoercingContext, ErrorTrackingCoercer, ExceptionLike } from '../types';
export declare class ErrorCoercer implements ErrorTrackingCoercer<Error> {
    match(err: unknown): err is Error;
    coerce(err: Error, ctx: CoercingContext): ExceptionLike;
    private getType;
    private getMessage;
    private getStack;
}
//# sourceMappingURL=error-coercer.d.ts.map