/** * Composing a React component with other functions/enhancements. * @param {any} funcs Callback functions. */ declare const compose: (...funcs: any) => any; export default compose;