import { default as React, HTMLAttributes } from 'react'; export interface NavbarRowProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string; } declare const NavbarRow: React.ForwardRefExoticComponent>; export default NavbarRow; //# sourceMappingURL=NavbarRow.d.ts.map