import React, { FC, ReactNode } from "react";
import { StyledNavbar } from "../stitches/navbar";
import { LogoutProps, NavButtonsProps } from "../utils/types";
interface DivProps extends StitchesDivProps, NavButtonsProps, LogoutProps {
    children?: ReactNode;
    companyLogo?: string;
    companyLogoAlt: string;
    onHome: () => void;
}
declare type StitchesDivProps = React.ComponentProps<typeof StyledNavbar>;
export declare const Navbar: FC<DivProps>;
export {};
