/// import { IconProp } from "@fortawesome/fontawesome-svg-core"; export declare type IMenu = { to: string; title: string; icon: IconProp; end?: boolean; }; declare type Props = { menu: IMenu[]; }; export default function SideBarVertical({ menu }: Props): JSX.Element; export {};