import React from 'react'; import PropTypes from 'prop-types'; declare const NavBarProducts: { ({ products, activeProduct }: { products: any; activeProduct: any; }): React.JSX.Element; propTypes: { products: PropTypes.Requireable<(PropTypes.InferProps<{ id: PropTypes.Requireable; isNew: PropTypes.Requireable; href: PropTypes.Requireable; }> | null | undefined)[]>; activeProduct: PropTypes.Requireable; }; defaultProps: { products: never[]; activeProduct: undefined; }; }; export default NavBarProducts; //# sourceMappingURL=NavBarProducts.d.ts.map