/** * Wraps the provided value in an array, unless the provided value is an array. * * @param value - The value to coerce to an array * @returns An array * * @example * coerceArray('foo'); // Returns: ['foo'] * coerceArray(['foo']); // Returns: ['foo'] */ export declare const coerceArray: (value: T | T[]) => T[];