import { AnyIterable, Mapper } from 'augmentative-iterable';
import { CombineIngredients } from './ingredients';
export declare function combineRecipe(combineFuncs: CombineIngredients): <T, U>(this: AnyIterable<T>, iterable: AnyIterable<U>, keyA?: Mapper<T, unknown> | undefined, keyB?: Mapper<U, unknown> | undefined) => any;
