import { ICreateMapperInput } from "./_types/ICreateMapperInput"; import { TCreateMapperOutput } from "./_types/TCreateMapperOutput"; /** * Creates a mapper using a default map function * @param map The standard function that maps an input to an output * @param mapperInput The data to be mapped, functions will remain functions, true will be replaced by the default mapping, strings wil use the default map function but get aliased * @returns A valid mapper definition */ export declare function createMapper>(map: (value: I, context: C) => O, mapperInput: M): TCreateMapperOutput; //# sourceMappingURL=createMapper.d.ts.map