/** * Extract specific properties from an object. * * @param {[]} props - Specific properties wanted from object. * @param {object} obj - Original object * @returns {object} Output to object with the specify properties. */ export declare function getObjectProps(props: { key: string; accessor: string; }[], obj: object): {}; //# sourceMappingURL=helpers.d.ts.map