import { Result } from 'defekt';
import { AssertionFailed } from '../../../errors';
declare const assertActualIsNotEmpty: <TContent>(actual: string | object | Map<any, TContent> | Set<TContent> | TContent[]) => Result<undefined, AssertionFailed>;
export { assertActualIsNotEmpty };
