/// <reference types="react" />
export interface NavButtonProps {
    text: string;
    active?: boolean;
    onClick?: () => void;
    className?: string;
}
/**
 * Dark bold text
 * hover effect: subtly highlight bg with rounded edge
 * underline?
 */
export default function NavLink({ text, active, onClick, className, }: NavButtonProps): JSX.Element;
