import * as React from 'react'; import { OptionalComponentPropAndHTMLAttributes } from '../../types'; export declare type NavBarProps = { /** * Fix the navbar to the top of the screen */ fixed?: boolean; /** * Hide the navbar when scrolling down, but display when scrolling up */ shy?: boolean; /** * Remove NavBar shadow */ noShadow?: boolean; } & OptionalComponentPropAndHTMLAttributes; declare const _default: React.MemoExoticComponent<(props: NavBarProps) => JSX.Element>; export default _default;