import React from "react"; export declare type CtNavbarOptionProps = React.AnchorHTMLAttributes & { label: string; onClick?: () => void; active?: boolean; }; declare function CtNavbarOption({ label, active, onClick, href, className, ...rest }: CtNavbarOptionProps): JSX.Element; export default CtNavbarOption;