import { CoercingContext, ErrorTrackingCoercer, ExceptionLike } from '../types';
export declare class DOMExceptionCoercer implements ErrorTrackingCoercer<DOMException> {
    match(err: unknown): err is DOMException;
    coerce(err: DOMException, ctx: CoercingContext): ExceptionLike;
    private getType;
    private getValue;
    private isDOMException;
    private isDOMError;
}
//# sourceMappingURL=dom-exception-coercer.d.ts.map