import { HTMLProps } from 'react';

export interface HeaderProps extends HTMLProps<HTMLElement> {}

export default function Header(props: HeaderProps): JSX.Element;