/**
 * Converts any type to array (arrays are included).
 */
export declare const toArray: <T>(arg: T | Array<T>) => Array<T>;
