/** @jsxRuntime classic */ /** @jsx jsx */ import { FC } from 'react'; export interface Props { active: string; setActive: (val: string) => void; isWide: boolean; setWide: (val: boolean) => void; handleCart: () => void; user: { img: string; fullname: string; }; } export declare const Navigation: FC;