/** * Returns a copy of the object only containing the allowed properties. * * @param {*} obj * @param {*} allowlist */ export declare function pick(obj: any, ...allowlist: any[]): {};