/// <reference types="react" />
import { FontAwesomeIconProps } from "@fortawesome/react-fontawesome";
declare type SidebarProps = {
    menu: {
        to: string;
        title: string;
        icon?: FontAwesomeIconProps;
        end?: boolean;
    }[];
};
export default function SideBarVertical({ menu }: SidebarProps): JSX.Element;
export {};
