/** * Checks if the stores array is defined, not empty, and is an array. * @param {unknown} stores - The stores array to check. * @throws {Error} If the stores array is undefined, empty, or not an array. */ export declare function checkStores(stores: unknown): void;