import { HTMLAttributes, default as React } from 'react';
export interface NavbarProps extends HTMLAttributes {
/**
* ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest).
*/
testId?: string;
/**
* Specifies the scroll direction. This value can be achieved using the `useScrollDirection` hook.
*/
scrollDirection: string;
}
declare const Navbar: React.ForwardRefExoticComponent>;
export default Navbar;
//# sourceMappingURL=Navbar.d.ts.map