import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
interface NavBarRightProps extends ViewProps {
    icon?: ReactNode;
    children?: ReactNode;
}
export declare function NavBarRight(props: NavBarRightProps): JSX.Element;
export default NavBarRight;
