import { FC, ReactType, ReactNode } from 'react'; import { LinkProps } from '../../blocks/Link'; export interface HeaderProps { variant?: string; claim?: string; Navigation: ReactType; Link?: ReactType; LinkProps?: LinkProps; children?: ReactNode; } declare const Header: FC; export default Header;