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