import { AssertionFailed } from '../../../errors';
import { Result } from 'defekt';
declare const assertActualIsNotAValue: <TValue, TError extends Error>(actual: Result<TValue, TError>) => Result<undefined, AssertionFailed>;
export { assertActualIsNotAValue };
