import { AssertionFailed } from '../../../errors';
import { Result } from 'defekt';
declare const assertActualIsNotThrowingAsync: <TError extends Error = Error>(actual: (...args: any[]) => any, expected?: string | RegExp | ((ex: TError) => boolean) | undefined) => Promise<Result<undefined, AssertionFailed>>;
export { assertActualIsNotThrowingAsync };
