interface StringAssertions { containing: (expected: string) => void; startingWith: (expected: string) => void; endingWith: (expected: string) => void; containingAllOf: (expected: Iterable) => void; containingAnyOf: (expected: Iterable) => void; empty: () => void; matching: (expected: RegExp) => void; } export type { StringAssertions };