export default class RuntimeError {
    /**
     * Create a new Runtime Error
     * @since 9.0.0
    */ constructor(cause: string, error: unknown);
    /**
     * The Cause of this Error
     * @since 9.0.0
    */ cause: string;
    /**
     * The Actual Error
     * @since 9.0.0
    */ error: unknown;
    /**
     * Get the Error message
     * @since 9.0.0
    */ toString(): string;
}
