/** * --- * category: utilities/react * --- * Return a props object with only specified propTypes. * @module pickProps * @param {Object} props React component props * @param {Object|Array} propTypesOrAllowedPropList React component propTypes or the list of allowed prop keys * @param {Array} include an optional array of prop names to include * @returns {Object} props object with only the included props * @module pickProps */ declare function pickProps>(props: T, propTypesOrAllowedPropList: Record | string[], include?: string[]): Record; export default pickProps; export { pickProps }; //# sourceMappingURL=pickProps.d.ts.map