/// import { TBaseProps } from '../types'; export declare type ImageShape = 'circle' | 'rounded' | 'square' | ''; export declare type Props = TBaseProps & { imageShape?: ImageShape; imageSrc?: string; title?: string; }; export declare const NavItemImage: ({ imageSrc, imageShape, title, }: Props) => JSX.Element | null;