import React from 'react';
import PropTypes from 'prop-types';
interface Props {
    className?: string;
    href?: string;
    children?: React.ReactNode;
}
declare const NavBrand: {
    (props: Props): React.JSX.Element;
    propTypes: {
        className: PropTypes.Requireable<string>;
        href: PropTypes.Requireable<string>;
    };
};
export default NavBrand;
export { NavBrand as CDBNavBrand };
