import type { AsyncVoid, LogParams } from '../../types/internal'; /** * Asserts that a function throws an exception when called. * If the function returns a promise, then asserts that this promise will be rejected. */ export declare const assertFunctionThrows: (func: (this: void) => ReturnedValue, check: string, payload?: LogParams) => ReturnedValue;