/**
* Throws an error if property is not defined in the given object
* @param obj Object where to search for the property
* @param name The name of the property can be on the form "a.b.c[1].d"
*/
export declarefunctionisPropertyDefinedWithThrow(obj: any, name: string): void;