/** * --- * category: utilities/react * --- * Return a props object with only specified propTypes. * * @param props React component props * @param propTypesOrAllowedPropList React component propTypes or the list of allowed prop keys * @param include an optional array of prop names to include * @returns 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