/**
 * 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<string>('foo'); // Returns: ['foo']
 * coerceArray(['foo']);       // Returns: ['foo']
 */
export declare const coerceArray: <T>(value: T | T[]) => T[];
