import { PropsWithChildren, ReactElement } from 'react'; export interface HeaderProps extends PropsWithChildren { background?: string; justify?: string; } declare const Header: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLElement>, PropsWithChildren>>; declare type Header = ReactElement; export default Header;