import { Constructor, ErrorPredicate } from '../utils/process-error'; declare module '../expect.types' { interface FunctionExpect { /** * check if function throws * @param message */ throw(message?: string): this; throw(matcher: RegExp | Constructor | ErrorPredicate, message?: string): this; } } //# sourceMappingURL=throw.d.ts.map