declare function objectIsNotEmpty(expected: any, message?: string, _isSoft?: boolean): void;
declare function objectIsEmpty(expected: any, message?: string, _isSoft?: boolean): void;
declare function objectIncludesKeys(object: any, keys: string[], message?: string, _isSoft?: boolean): void;
declare function objectIncludesMembers(expected: any, actual: {
    [k: string]: any;
}, message?: string, _isSoft?: boolean): void;
export { objectIncludesKeys, objectIncludesMembers, objectIsNotEmpty, objectIsEmpty };
