export interface IOptions { valueOverride?: boolean; } declare const setObjectValue: (object: T, keys?: string | string[], value?: any, options_?: IOptions) => T; export default setObjectValue;