/** * Casts `value` as an array if it's not one. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 128 bytes * - Micro-dash: 44 bytes */ export declare function castArray(value: T): T extends unknown[] ? T : T[];