import { AssertionFailed } from '../../errors';
import { Result } from 'defekt';
declare const assertAnyIsNotFalse: (actual: any) => Result<undefined, AssertionFailed>;
export { assertAnyIsNotFalse };
