interface ObjectAssertions { atLeast: (expected: object) => void; atMost: (expected: object) => void; instanceOf: (expected: Function) => void; empty: () => void; } export type { ObjectAssertions };