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; }; export declare const Header: import("react").ForwardRefExoticComponent>; export default Header;