/**
 * Set an object item to a given value using separator notation.
 *
 * @param  target any
 * @param  key strig
 * @param  value any
 * @param  separator string
 * @return Boolean
 */
export declare function deepSet(target: any, key: string, value: any, separator?: string): boolean;
