type Fn<T = any, R = T> = (x: T) => R;
export declare const concatMap: <T = any, R = T>(f: Fn<T, R>, ...xs: (any | any[])[]) => R[];
export {};
