/** * Maps out the given object recursively * @param obj Object to map out values on * @param index Index to start evaluating square brackets from * @param match RegExp match containing square brackets * @param value Value to set at the end */ export declare function map(obj: Record, index: number, match: string[], value: string): T;