import { ContextValue, DOMRenderProps } from './utils'; import React, { HTMLAttributes } from 'react'; export interface HeaderProps extends HTMLAttributes, DOMRenderProps<'header', undefined> { } export declare const HeaderContext: React.Context>; export declare const Header: (props: HeaderProps & React.RefAttributes) => React.ReactElement> | null;