/**
 * Return flattened array from the given arrays
 * @param args Multiple arrays to be flattened
 * @returns The flattened array
 */
export declare function flatten<T>(...args: Array<Array<T> | T>): Array<T>;
