import { type PropsWithChildren, type ReactNode } from 'react'; import { type ProductProps } from '../../Product'; import { type ProfileProps } from '../../Profile'; export type HeaderProps = { product: ProductProps; productSwitcher?: (props: PropsWithChildren<{}>) => JSX.Element; profile?: ProfileProps; children?: ReactNode; }; /** * Основной header приложения */ export declare const Header: import("react").ForwardRefExoticComponent>;