import type { Class } from '@matrixai/errors'; import { AbstractError } from '@matrixai/errors'; declare class ErrorPolykey extends AbstractError { static description: string; exitCode: number; static fromJSON>(this: T, json: any): InstanceType; toJSON(): any; toString(): string; } export default ErrorPolykey;