/**
 * Get property descriptor with looking into targets' prototype chain.
 *
 * @param target the target object
 * @param key key for the property
 */
export declare function getDescriptor(target: unknown, key: string): PropertyDescriptor | undefined;
