/**
 * Check if the object has the property
 * @param obj The object to search for the property
 * @param name The name of the property can be on the form "a.b.c[1].d"
 */
export declare function hasProperty(obj: any, name: string | Array<string>): boolean;
