/**
 * Check if object has nested property.
 */
declare function has(obj: Record<string, any>, prop: string): boolean;
export default has;
