interface ArrayAssertions { containing: (item: TContent) => void; containingAllOf: (iterable: Iterable) => void; containingAnyOf: (iterable: Iterable) => void; empty: () => void; } export type { ArrayAssertions };