import { IPropMapper } from "./_types/IPropMapper"; import { TPropMapperOutputs } from "./_types/TPropMapperOutputs"; import { TPropMapperInputs } from "./_types/TPropMapperInputs"; /** * Maps the given props to other props * @param props The props to map * @param mapper The mapper definitions for each of the properties * @param context The context to pass to the mapper definitions * @param output An optional output object to add the properties to * @returns The resulting object after mapping */ export declare function mapProps, T, I extends Partial>>(props: I, mapper: M, context: T, output?: { [key: string]: any; }): TPropMapperOutputs; //# sourceMappingURL=mapProps.d.ts.map