import { DiagnosticError } from './DiagnosticError'; /** * @internalapi * Error that is thrown when there are invalid options passed to a test. */ export declare class InvalidOptionsError> extends DiagnosticError { reasons: Partial>; constructor(reasons: Partial>); }