import { FC, PropsWithChildren } from 'react'; type HeaderDesktopProps = PropsWithChildren & { title: string; }; declare const HeaderDesktop: FC; export { HeaderDesktop };