import type { Data } from "../util/data.js"; import type { Identifier, Item } from "../util/item.js"; import type { NotString } from "../util/string.js"; /** Expect that an object matches `PromiseLike` */ export declare const EXPECT_PROMISELIKE: any; /** Expect `Item` objects with an `.id` prop in any order. */ export declare function expectUnorderedItems(items: Iterable>, keys: Iterable & NotString): void; /** Expect `Item` objects with an `.id` prop in a specified order. */ export declare function expectOrderedItems(items: Iterable>, keys: Iterable & NotString): void;