type ToArray<T> = T extends unknown[] ? T : T[];
export declare function toArray<T>(value: T): ToArray<T>;
export {};
