interface SetAssertions { containing: (item: TContent) => void; containingAllOf: (iterable: Iterable) => void; containingAnyOf: (iterable: Iterable) => void; atLeast: (expected: Set) => void; atMost: (expected: Set) => void; empty: () => void; } export type { SetAssertions };