/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ export declare function forceArray(input: T | T[]): T[]; export declare function sleep(ms: number): Promise; /** * Takes an array of objects and collects values for each property into arrays * @param input Array of objects to process * @returns Object with arrays of values for each property */ export declare function collectPropertyValues(input: Input[]): { [K in keyof Input]: Input[K][]; }; export declare function toSQLiteTimestamp(date: Date | null | undefined): string | null; export declare function deepEqual(a: unknown, b: unknown): boolean; export declare function sortObject(obj: Record): Record; export declare function serialize(obj: Record): string; //# sourceMappingURL=Misc.d.ts.map