import { FC } from 'react'; import { LinkProps } from '@mui/material'; import { LogoProps } from '@/src/components/logo/Logo'; export interface HeaderLogoProps extends LinkProps { /** * Properties applied to Logo component */ logoProps?: LogoProps; } /** * Logo with link wrapper */ export declare const HeaderLogo: FC;