import { ScanExceptionCode } from './ScanExceptionCode'; import { SecTesterError } from '@sectester/core'; export declare abstract class ScanException extends SecTesterError { abstract get type(): ScanExceptionCode; protected constructor(message: string); }