export const blockClass: string; export function NavItem({ activeHref, children, className, current, disabled, element, href, id, label, onClick, tabIndex, ...rest }: { [x: string]: any; activeHref?: string | undefined; children?: any; className: any; current: any; disabled?: boolean | undefined; element?: string | undefined; href: any; id: any; label: any; onClick?: (() => void) | undefined; tabIndex?: number | undefined; }): React.JSX.Element; export namespace NavItem { export { componentName as displayName }; export namespace propTypes { let activeHref: PropTypes.Requireable; let children: PropTypes.Validator>; let className: PropTypes.Requireable; let current: PropTypes.Requireable; let disabled: PropTypes.Requireable; let element: PropTypes.Requireable; let href: PropTypes.Requireable; let id: PropTypes.Requireable; let label: PropTypes.Requireable; let link: PropTypes.Requireable; let onClick: PropTypes.Requireable<(...args: any[]) => any>; let tabIndex: PropTypes.Requireable; } } export default NavItem; import React from 'react'; declare const componentName: "NavItem"; import PropTypes from 'prop-types'; //# sourceMappingURL=NavItem.d.ts.map