/** * @name mapProps * @author Tyler Benton * @description This loops over all the child elements, clones them and passes in your props * @arg {components, array} children - The children to loop over * @arg {object, function} props [{}] - The extra props to pass in * if a function is passed in it will be passed the the current * child, index, and the current array of children * @arg {boolean} deep [false] - If you want it to recursively set props on children * @returns {array} modified children */ export declare function mapProps(children: any, props?: {}, deep?: boolean): any; //# sourceMappingURL=map-props.d.ts.map