/** * Composes fn_a into a single function * @see {@link https://gist.github.com/JamieMason/172460a36a0eaef24233e6edb2706f83} */ export declare function compose( ...fn_a:compose_fn_T[] ):compose_fn_T export declare type compose_fn_T = (...fn_a:any[])=>O